Skip to content

Commit c40faa9

Browse files
enable doclint on java 8+
fix errors reported by java 8 doclint
1 parent 958657f commit c40faa9

3 files changed

Lines changed: 2 additions & 11 deletions

File tree

pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -426,15 +426,6 @@ file comparators, endian transformation classes, and much more.
426426
</plugins>
427427
</build>
428428
</profile>
429-
<profile>
430-
<id>jdk8-javadoc</id>
431-
<activation>
432-
<jdk>[1.8,)</jdk>
433-
</activation>
434-
<properties>
435-
<additionalparam>-Xdoclint:none</additionalparam>
436-
</properties>
437-
</profile>
438429
<profile>
439430
<id>travis</id>
440431
<activation>

src/main/java/org/apache/commons/io/input/BoundedReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public void reset() throws IOException {
9595
* greater.
9696
*
9797
* @throws IOException If an I/O error occurs while calling the underlying reader's mark method
98-
* @see java.io.Reader#mark(int).
98+
* @see java.io.Reader#mark(int)
9999
*/
100100
@Override
101101
public void mark( final int readAheadLimit ) throws IOException {

src/main/java/org/apache/commons/io/input/ObservableInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* The {@link ObservableInputStream} allows, that an InputStream may be consumed
2727
* by other receivers, apart from the thread, which is reading it.
2828
* The other consumers are implemented as instances of {@link Observer}. A
29-
* typical application may be the generation of a {@link MessageDigest} on the
29+
* typical application may be the generation of a {@link java.security.MessageDigest} on the
3030
* fly.
3131
* {@code Note}: The {@link ObservableInputStream} is <em>not</em> thread safe,
3232
* as instances of InputStream usually aren't.

0 commit comments

Comments
 (0)