# HG changeset patch # User Jiri Vanek # Date 1442939073 -7200 # Node ID 75504136acda43cd342cf696ea4da7399dd1cf17 # Parent 23cacc07d0b27db3925d2cf279b88f6fa269189f fixed two doclint errors diff -r 23cacc07d0b2 -r 75504136acda ChangeLog --- a/ChangeLog Fri Sep 11 15:00:10 2015 +0200 +++ b/ChangeLog Tue Sep 22 18:24:33 2015 +0200 @@ -1,3 +1,10 @@ +2015-09-22 Jiri Vanek + + fixed two doclint errors + * netx/net/sourceforge/jnlp/security/package-info.java: diagram put inside code annotation + * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java: + (getTitle) added javadoc to prevent auto-generated return with (doclint) invalid character + 2015-09-11 Jiri Vanek Post-release changes diff -r 23cacc07d0b2 -r 75504136acda netx/net/sourceforge/jnlp/security/package-info.java --- a/netx/net/sourceforge/jnlp/security/package-info.java Fri Sep 11 15:00:10 2015 +0200 +++ b/netx/net/sourceforge/jnlp/security/package-info.java Tue Sep 22 18:24:33 2015 +0200 @@ -32,6 +32,7 @@ statement from your version.*/ /** *
+{@code
         ITW-thread(s)               | dialogs-thread                                                                                                                                  X
                                     |                                                                                                                                                 X
    presteps in SecurtyDialogs       |                                                                                                                                                 X
@@ -75,7 +76,7 @@
             |                       |                                                                                                                                                 X
    continue accordingly             |                                                                                                                                                 X
                                                                                                                                                                                       X
-
+}
  *
*/ package net.sourceforge.jnlp.security; diff -r 23cacc07d0b2 -r 75504136acda netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java --- a/netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java Fri Sep 11 15:00:10 2015 +0200 +++ b/netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java Tue Sep 22 18:24:33 2015 +0200 @@ -193,6 +193,11 @@ return false; } + /** + * Return title for policy extended by drop-down mark. + * + * @return title with down-pointing arrow + */ public String getTitle() { return title + " ˇ"; }