Skip to content

Commit f7a29a5

Browse files
committed
Removed build.number in the javadoc and created by Mark Perry
1 parent ed841cd commit f7a29a5

File tree

141 files changed

+11
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+11
-374
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ allprojects {
4646

4747
snapshotAppendix = "-SNAPSHOT"
4848
fjVersion = fjBaseVersion + (isSnapshot ? snapshotAppendix : "")
49-
fjConsumeVersion = "4.8.1"
49+
fjConsumeVersion = "4.9"
5050

5151
signModule = false
5252

consume/src/test/java/fj/EmptyTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
import org.junit.Assert;
77

8-
/**
9-
* Created by MarkPerry on 30/08/2015.
10-
*/
118
public class EmptyTest {
129

1310
@Ignore @Test

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
/**
44
* Represents the bottom _|_ value.
5-
*
6-
* @version %build.number%
75
*/
86
public final class Bottom {
97
private Bottom() {

core/src/main/java/fj/Class.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
/**
1313
* A wrapper for a {@link java.lang.Class} that provides additional methods.
14-
*
15-
* @version %build.number%
1614
*/
1715
public final class Class<T> {
1816
private final java.lang.Class<T> c;

core/src/main/java/fj/Digit.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
/**
88
* The digits zero to nine.
9-
*
10-
* @version %build.number%
119
*/
1210
public enum Digit {
1311
/**

core/src/main/java/fj/Effect.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
/**
1616
* Represents a side-effect.
17-
*
18-
* @version %build.number%
1917
*/
2018
public final class Effect {
2119

core/src/main/java/fj/Equal.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
/**
2424
* Tests for equality between two objects.
25-
*
26-
* @version %build.number%
2725
*/
2826
public final class Equal<A> {
2927

core/src/main/java/fj/F.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
import static fj.data.Zipper.fromStream;
1717

1818
/**
19-
* A transformation or function from <code>A</code> to <code>B</code>. This type can be represented
20-
* using the Java 7 closure syntax.
21-
*
22-
* @version %build.number%
19+
* A transformation or function from <code>A</code> to <code>B</code>.
2320
*/
2421
@FunctionalInterface
2522
public interface F<A, B> extends Function<A, B> {

core/src/main/java/fj/F0.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
import java.util.function.Supplier;
88

9-
/**
10-
* Created by MarkPerry on 21/01/2015.
11-
*/
129
@FunctionalInterface
1310
public interface F0<A> extends Supplier<A> {
1411

core/src/main/java/fj/F2.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414

1515
/**
1616
* A transformation function of arity-2 from <code>A</code> and <code>B</code> to <code>C</code>.
17-
* This type can be represented using the Java 7 closure syntax.
18-
*
19-
* @version %build.number%
2017
*/
2118
@FunctionalInterface
2219
public interface F2<A, B, C> extends BiFunction<A, B, C> {

0 commit comments

Comments
 (0)