/hg/release/icedtea-web-1.5: Fixed doclint errors
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Fri Apr 17 08:48:36 UTC 2015
changeset 6660f78e2691 in /hg/release/icedtea-web-1.5
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.5?cmd=changeset;node=6660f78e2691
author: Jiri Vanek <jvanek at redhat.com>
date: Fri Apr 17 10:48:22 2015 +0200
Fixed doclint errors
diffstat:
ChangeLog | 8 +++++++
netx/net/sourceforge/jnlp/JNLPFile.java | 2 -
netx/net/sourceforge/jnlp/util/FileUtils.java | 1 -
netx/net/sourceforge/nanoxml/XMLElement.java | 22 ++++++++++----------
netx/net/sourceforge/nanoxml/XMLParseException.java | 2 +-
5 files changed, 20 insertions(+), 15 deletions(-)
diffs (152 lines):
diff -r eaafcffd67a2 -r 6660f78e2691 ChangeLog
--- a/ChangeLog Tue Mar 03 09:41:23 2015 -0500
+++ b/ChangeLog Fri Apr 17 10:48:22 2015 +0200
@@ -1,3 +1,11 @@
+2015-04-17 Jiri Vanek <jvanek at redhat.com>
+
+ fixed doclint errors
+ * netx/net/sourceforge/jnlp/JNLPFile.java:
+ * netx/net/sourceforge/jnlp/util/FileUtils.java:
+ * netx/net/sourceforge/nanoxml/XMLElement.java:
+ * netx/net/sourceforge/nanoxml/XMLParseException.java:
+
2015-03-03 Jie Kang <jkang at redhat.com>
Fix DeadLockTest reproducers
diff -r eaafcffd67a2 -r 6660f78e2691 netx/net/sourceforge/jnlp/JNLPFile.java
--- a/netx/net/sourceforge/jnlp/JNLPFile.java Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/jnlp/JNLPFile.java Fri Apr 17 10:48:22 2015 +0200
@@ -269,7 +269,6 @@
/**
* Create a JNLPFile from an input stream.
*
- * @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(InputStream input, ParserSettings settings) throws ParseException {
@@ -283,7 +282,6 @@
* @param input input stream of JNLP file.
* @param codebase codebase to use if not specified in JNLP file..
* @param settings the {@link ParserSettings} to use when parsing
- * @throws IOException if an IO exception occurred
* @throws ParseException if the JNLP file was invalid
*/
public JNLPFile(InputStream input, URL codebase, ParserSettings settings) throws ParseException {
diff -r eaafcffd67a2 -r 6660f78e2691 netx/net/sourceforge/jnlp/util/FileUtils.java
--- a/netx/net/sourceforge/jnlp/util/FileUtils.java Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/jnlp/util/FileUtils.java Fri Apr 17 10:48:22 2015 +0200
@@ -394,7 +394,6 @@
/**
* Show a dialog informing the user that the file could not be opened
* @param frame a {@link JFrame} to act as parent to this dialog
- * @param filePath a {@link String} representing the path to the file we failed to open
* @param message a {@link String} giving the specific reason the file could not be opened
*/
public static void showCouldNotOpenDialog(final Component frame, final String message) {
diff -r eaafcffd67a2 -r 6660f78e2691 netx/net/sourceforge/nanoxml/XMLElement.java
--- a/netx/net/sourceforge/nanoxml/XMLElement.java Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/nanoxml/XMLElement.java Fri Apr 17 10:48:22 2015 +0200
@@ -83,7 +83,7 @@
* {@link #createAnotherElement() createAnotherElement}
* which has to return a new copy of the receiver.
* </dd></dl>
- * </p>
+ *
*
* @see net.sourceforge.nanoxml.XMLParseException
*
@@ -178,7 +178,7 @@
private boolean ignoreWhitespace;
/**
- * Character read too much.<br/>
+ * Character read too much.<br>
* This character provides push-back functionality to the input reader
* without having to use a PushbackReader.
* If there is no such character, this field is {@code '\0'}.
@@ -210,7 +210,7 @@
private int parserLineNr;
/**
- * Creates and initializes a new XML element.<br/>
+ * Creates and initializes a new XML element.<br>
* Calling the construction is equivalent to:
* <ul><li>{@code new XMLElement(new Hashtable(), false, true)}</li></ul>
*
@@ -400,7 +400,7 @@
}
/**
- * Returns an attribute of the element.<br/>
+ * Returns an attribute of the element.<br>
* If the attribute doesn't exist, {@code null} is returned.
*
* @param name The name of the attribute.
@@ -535,7 +535,7 @@
* The new name.
*
* <dl><dt><b>Preconditions:</b></dt><dd>
- * <ul><li{@code name != null}</li>
+ * <ul><li>{@code name != null}</li>
* <li>{@code name} is a valid XML identifier</li>
* </ul></dd></dl>
*/
@@ -597,7 +597,7 @@
}
/**
- * This method scans an identifier from the current reader.<br/>
+ * This method scans an identifier from the current reader.<br>
* The scanned whitespace is appended to {@code result}.
*
* @return the next character following the whitespace.
@@ -625,7 +625,7 @@
}
/**
- * This method scans a delimited string from the current reader.<br/>
+ * This method scans a delimited string from the current reader.<br>
* The scanned string without delimiters is appended to {@code string}.
*
* <dl><dt><b>Preconditions:</b></dt><dd>
@@ -653,8 +653,8 @@
/**
* Scans a {@code #PCDATA} element. CDATA sections and entities are
- * resolved.<br/>
- * The next < char is skipped.<br/>
+ * resolved.<br>
+ * The next < char is skipped.<br>
* The scanned data is appended to {@code data}.
*
* <dl><dt><b>Preconditions:</b></dt><dd>
@@ -831,7 +831,7 @@
}
/**
- * Scans the data for literal text.<br/>
+ * Scans the data for literal text.<br>
* Scanning stops when a character does not match or after the complete
* text has been checked, whichever comes first.
*
@@ -985,7 +985,7 @@
}
/**
- * Resolves an entity. The name of the entity is read from the reader.<br/>
+ * Resolves an entity. The name of the entity is read from the reader.<br>
* The value of the entity is appended to {@code buf}.
*
* @param buf Where to put the entity value.
diff -r eaafcffd67a2 -r 6660f78e2691 netx/net/sourceforge/nanoxml/XMLParseException.java
--- a/netx/net/sourceforge/nanoxml/XMLParseException.java Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/nanoxml/XMLParseException.java Fri Apr 17 10:48:22 2015 +0200
@@ -32,7 +32,7 @@
* An XMLParseException is thrown when an error occures while parsing an XML
* string.
* <p>
- * $Revision: 1.1 $<br/>
+ * $Revision: 1.1 $<br>
* $Date: 2002/08/03 04:05:32 $</p>
*
* @see net.sourceforge.nanoxml.XMLElement
More information about the distro-pkg-dev
mailing list