Skip to content

Commit

Permalink
(yegor256#1169) Remove explicit type parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoss committed Sep 29, 2020
1 parent 22b6ed1 commit 48f35c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/scalar/PropertiesOf.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public PropertiesOf(final Map.Entry<?, ?>... entries) {
public PropertiesOf(final Iterable<Map.Entry<?, ?>> entries) {
this(
new MapOf<>(
new Mapped<Map.Entry<?, ?>, Map.Entry<String, String>>(
new Mapped<>(
input -> new MapEntry<>(
input.getKey().toString(), input.getValue().toString()
),
Expand Down

0 comments on commit 48f35c0

Please sign in to comment.