Skip to content

Commit 6754e3a

Browse files
committed
spaces for tabs
1 parent 21aa69c commit 6754e3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/fj/data/List.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ public final A maximum(final Ord<A> o) {
14721472
* @return The optional maximum element in this list according to the given ordering.
14731473
*/
14741474
public final Option<A> maximumOption(final Ord<A> o) {
1475-
return NonEmptyList.fromList(this).map(nel -> nel.maximum(o));
1475+
return NonEmptyList.fromList(this).map(nel -> nel.maximum(o));
14761476
}
14771477

14781478
/**
@@ -1492,7 +1492,7 @@ public final A minimum(final Ord<A> o) {
14921492
* @return The optional minimum element in this list according to the given ordering.
14931493
*/
14941494
public final Option<A> minimumOption(final Ord<A> o) {
1495-
return NonEmptyList.fromList(this).map(nel -> nel.minimum(o));
1495+
return NonEmptyList.fromList(this).map(nel -> nel.minimum(o));
14961496
}
14971497

14981498
public final java.util.List<A> toJavaList() {

0 commit comments

Comments
 (0)