# HG changeset patch # User Alex Henrie # Date 1444427616 21600 # Fri Oct 09 15:53:36 2015 -0600 # Node ID 4f29b5945b705f2bd1e11804946435ce0c689c2c # Parent 8f7db3d62b960be0fb15c5b9e0d4a1b3dc3ecdeb Fix syntax errors in user properties template JDK 8 and later have strict syntax requirements for Javadoc. Specifically, Javadoc comments must now be written in a particular dialect of HTML, and literal angle brackets must be escaped. This commit follows the newer custom of putting the email address in parentheses instead of angle brackets, which causes NetBeans to generate @author annotations that any JDK can parse without errors. diff --git a/templates/src/org/netbeans/modules/templates/resources/userprop.txt b/templates/src/org/netbeans/modules/templates/resources/userprop.txt --- a/templates/src/org/netbeans/modules/templates/resources/userprop.txt +++ b/templates/src/org/netbeans/modules/templates/resources/userprop.txt @@ -1,8 +1,8 @@ # # Here, or in other properties files in this directory, you can define # various properties that you want to make available to the template # processor while creating various templates. # # uncomment the next line and specify your user name to be used in new templates -#user=Your Name +#user=Your Name (your.name@your.org)