Skip to content

Commit

Permalink
remove uneeded @SuppressWarnings yegor256#838
Browse files Browse the repository at this point in the history
  • Loading branch information
victornoel committed May 10, 2018
1 parent 26fd17a commit 1e43297
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/cactoos/iterable/IterableOfDoubles.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public final class IterableOfDoubles extends IterableEnvelope<Double> {
* Ctor.
* @param values Double values
*/
@SuppressWarnings("PMD.AvoidUsingShortType")
public IterableOfDoubles(final double... values) {
super(() -> {
final Collection<Double> iterable =
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/cactoos/iterable/IterableOfFloats.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public final class IterableOfFloats extends IterableEnvelope<Float> {
* Ctor.
* @param values Float values
*/
@SuppressWarnings("PMD.AvoidUsingShortType")
public IterableOfFloats(final float... values) {
super(() -> ()
-> new UncheckedScalar<>(() -> new IteratorOfFloats(values)).value()
Expand Down

0 comments on commit 1e43297

Please sign in to comment.