# HG changeset patch # User Jiri Vanek # Date 1429260502 -7200 # Node ID 6660f78e2691584a664bb5f7df399cd9a0770c29 # Parent eaafcffd67a2e9fae9f9b9a3812c0099741a71e2 Fixed doclint errors 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 + + 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 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. * - *

+ * * * @see net.sourceforge.nanoxml.XMLParseException * @@ -178,7 +178,7 @@ private boolean ignoreWhitespace; /** - * Character read too much.
+ * Character read too much.
* 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.
+ * Creates and initializes a new XML element.
* Calling the construction is equivalent to: *
  • {@code new XMLElement(new Hashtable(), false, true)}
* @@ -400,7 +400,7 @@ } /** - * Returns an attribute of the element.
+ * Returns an attribute of the element.
* If the attribute doesn't exist, {@code null} is returned. * * @param name The name of the attribute. @@ -535,7 +535,7 @@ * The new name. * *
Preconditions:
- *
    + *
    • {@code name != null}
    • *
    • {@code name} is a valid XML identifier
    • *
*/ @@ -597,7 +597,7 @@ } /** - * This method scans an identifier from the current reader.
+ * This method scans an identifier from the current reader.
* 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.
+ * This method scans a delimited string from the current reader.
* The scanned string without delimiters is appended to {@code string}. * *
Preconditions:
@@ -653,8 +653,8 @@ /** * Scans a {@code #PCDATA} element. CDATA sections and entities are - * resolved.
- * The next < char is skipped.
+ * resolved.
+ * The next < char is skipped.
* The scanned data is appended to {@code data}. * *
Preconditions:
@@ -831,7 +831,7 @@ } /** - * Scans the data for literal text.
+ * Scans the data for literal text.
* 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.
+ * Resolves an entity. The name of the entity is read from the reader.
* 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. *

- * $Revision: 1.1 $
+ * $Revision: 1.1 $
* $Date: 2002/08/03 04:05:32 $

* * @see net.sourceforge.nanoxml.XMLElement