changeset 1264:75504136acda

fixed two doclint errors
author Jiri Vanek <jvanek@redhat.com>
date Tue, 22 Sep 2015 18:24:33 +0200
parents 23cacc07d0b2
children cbc3174bed98
files ChangeLog netx/net/sourceforge/jnlp/security/package-info.java netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java
diffstat 3 files changed, 14 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <jvanek@redhat.com>
+
+	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  <jvanek@redhat.com>
 
 	Post-release changes 
--- 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.*/
 /**
  *<pre>
+{@code
         ITW-thread(s)               | dialogs-thread                                                                                                                                  X
                                     |                                                                                                                                                 X
    presteps in SecurtyDialogs       |                                                                                                                                                 X
@@ -75,7 +76,7 @@
             |                       |                                                                                                                                                 X
    continue accordingly             |                                                                                                                                                 X
                                                                                                                                                                                       X
-
+}
  *</pre>
  */
 package net.sourceforge.jnlp.security;
--- 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 + " ˇ";
         }