Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 11, 2023
2 parents e3aeb38 + f3b4460 commit b507d7e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,14 @@ file comparators, endian transformation classes, and much more.
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<configuration>
<parameter>
<excludes>
<!-- False positive: https://github.com/siom79/japicmp/issues/365 -->
<exclude>org.apache.commons.io.StreamIterator</exclude>
</excludes>
</parameter>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/io/StreamIterator.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* </p>
*
* @param <E> The {@link Stream} and {@link Iterator} type.
* @since 2.9.0
* @since 2.15.0
*/
public final class StreamIterator<E> implements Iterator<E>, AutoCloseable {

Expand Down

0 comments on commit b507d7e

Please sign in to comment.