Skip to content

Commit

Permalink
FIxing javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cuioss committed Aug 14, 2023
1 parent 7ad3de0 commit 471cf12
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/main/java/de/cuioss/tools/concurrent/StopWatch.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
*
* <p>
* <b>Note:</b> This class is not thread-safe.
* <p>
*
* @author com.google.common.base.Stopwatch
*/
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/de/cuioss/tools/io/IOStreams.java
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ public static int copy(final InputStream input, final OutputStream output) throw
* <p>
* This method buffers the input internally, so there is no need to use a
* <code>BufferedInputStream</code>.
* <p>
*
* @param input the <code>InputStream</code> to read from
* @param output the <code>OutputStream</code> to write to
Expand Down Expand Up @@ -290,7 +289,6 @@ public static long copyLarge(final InputStream input, final OutputStream output)
* <p>
* This method uses the provided buffer, so there is no need to use a
* <code>BufferedInputStream</code>.
* <p>
*
* @param input the <code>InputStream</code> to read from
* @param output the <code>OutputStream</code> to write to
Expand Down Expand Up @@ -526,7 +524,6 @@ public static long copyLarge(final Reader input, final Writer output) throws IOE
* <p>
* This method uses the provided buffer, so there is no need to use a
* <code>BufferedReader</code>.
* <p>
*
* @param input the <code>Reader</code> to read from
* @param output the <code>Writer</code> to write to
Expand Down Expand Up @@ -576,7 +573,6 @@ public static long copyLarge(final Reader input, final Writer output, final long
* <p>
* This method uses the provided buffer, so there is no need to use a
* <code>BufferedReader</code>.
* <p>
*
* @param input the <code>Reader</code> to read from
* @param output the <code>Writer</code> to write to
Expand Down
1 change: 0 additions & 1 deletion src/main/java/de/cuioss/tools/net/ParameterFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* url parameter handling. Therefore, it filters parameter prefixed with
* "javax.faces", depending on <code>excludeFacesParameter</code> and
* additionally a given list of parameter names.
* <p>
*
* @author Oliver Wolff
*/
Expand Down
1 change: 0 additions & 1 deletion src/main/java/de/cuioss/tools/string/Splitter.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ public static Splitter on(final char separator) {
* emptiness. So, for example, {@code
* Splitter.on(':').omitEmptyStrings().trimResults().split(": : : ")} returns an
* empty iterable.
* <p>
*
* @return a splitter with the desired configuration
*/
Expand Down

0 comments on commit 471cf12

Please sign in to comment.