Skip to content

Commit

Permalink
improve IteratorOfXXX documentation yegor256#838
Browse files Browse the repository at this point in the history
  • Loading branch information
victornoel committed May 10, 2018
1 parent 1e43297 commit 302afec
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 20 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/cactoos/iterator/IteratorOf.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import java.util.concurrent.atomic.AtomicInteger;

/**
* Iterator that returns the set of elements.
*
* {@link Iterator} that returns the elements.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Yegor Bugayenko (yegor256@gmail.com)
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/cactoos/iterator/IteratorOfBooleans.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import java.util.concurrent.atomic.AtomicInteger;

/**
* Iterator that returns the set of booleans.
*
* {@link Iterator} that returns the {@code boolean}s as {@link Boolean}s.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/cactoos/iterator/IteratorOfChars.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import java.util.concurrent.atomic.AtomicInteger;

/**
* Iterator that returns the set of chars.
*
* {@link Iterator} that returns the {@code char}s as {@link Character}s.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/cactoos/iterator/IteratorOfFloats.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import java.util.concurrent.atomic.AtomicInteger;

/**
* Iterator that returns the set of floats.
*
* {@link Iterator} that returns the {@code float}s as {@link Float}s.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/cactoos/iterator/IteratorOfInts.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import java.util.concurrent.atomic.AtomicInteger;

/**
* Iterator that returns the set of integers.
*
* {@link Iterator} that returns the {@code int}s as {@link Integer}s.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
import org.junit.Test;

/**
* Iterator that returns the set of booleans.
*
* <p>There is no thread-safety guarantee.</p>
* Tests for {@link IteratorOfBooleans}.
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
* @version $Id$
Expand Down
4 changes: 1 addition & 3 deletions src/test/java/org/cactoos/iterator/IteratorOfCharsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
import org.junit.Test;

/**
* Iterator that returns the set of chars.
*
* <p>There is no thread-safety guarantee.</p>
* Tests for {@link IteratorOfChars}.
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
* @version $Id$
Expand Down
2 changes: 0 additions & 2 deletions src/test/java/org/cactoos/iterator/IteratorOfFloatsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
/**
* Tests for {@link IteratorOfFloats}.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
* @version $Id$
* @since 0.32
Expand Down
2 changes: 0 additions & 2 deletions src/test/java/org/cactoos/iterator/IteratorOfIntsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
/**
* Tests for {@link IteratorOfInts}.
*
* <p>There is no thread-safety guarantee.</p>
*
* @author Krzysztof Krason (Krzysztof.Krason@gmail.com)
* @version $Id$
* @since 0.32
Expand Down

0 comments on commit 302afec

Please sign in to comment.