Skip to content

Commit 216ccd9

Browse files
committed
removing ipr file.
1 parent 1c257a3 commit 216ccd9

File tree

2 files changed

+3
-191
lines changed

2 files changed

+3
-191
lines changed

core/src/main/java/fj/Bottom.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ public static <A> P1<A> error_(final String s) {
5252
* @return A function that throws an error using the given message, ignoring its argument.
5353
*/
5454
public static <A, B> F<A, B> errorF(final String s) {
55-
return a -> {throw new Error(s);};
55+
return a -> {
56+
throw new Error(s);
57+
};
5658
}
5759

5860
/**

functionaljava.ipr

Lines changed: 0 additions & 190 deletions
This file was deleted.

0 commit comments

Comments
 (0)