Skip to content

Commit 0c0ba98

Browse files
committed
Documentation change related to 0.10 release
1 parent cfe9428 commit 0c0ba98

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

BEXCodeCompare/src/main/java/info/codesaway/bex/BEXPair.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public default IntBEXPair mapToInt(final ToIntFunction<T> function) {
9999

100100
/**
101101
* Applies the specified BiFunction, passing {@link #getLeft()} and {@link #getRight()} as arguments
102-
102+
103103
* @param function the BiFunction to apply
104104
* @return the result of applying the BiFunction
105105
*/
@@ -109,7 +109,7 @@ public default <R> R apply(final BiFunction<T, T, R> function) {
109109

110110
/**
111111
* Applies the specified ToIntBiFunction, passing {@link #getLeft()} and {@link #getRight()} as arguments
112-
112+
113113
* @param function the ToIntBiFunction to apply
114114
* @return the result of applying the ToIntBiFunction
115115
*/
@@ -119,7 +119,7 @@ public default int applyAsInt(final ToIntBiFunction<T, T> function) {
119119

120120
/**
121121
* Evaluates the specified BiPredicate, passing {@link #getLeft()} and {@link #getRight()} as arguments
122-
122+
123123
* @param predicate the BiPredicate to apply
124124
* @return <code>true</code> if the predicate matches when applying the arugments; otherwise, <code>false</code>
125125
*/
@@ -262,6 +262,7 @@ public default String toString(final String format) {
262262
/**
263263
* Compares the BEXPair first by the left element then the right element
264264
* @throws ClassCastException if the entries do not implement Comparable or are not mutually Comparable
265+
* @since 0.10
265266
*/
266267
@Override
267268
public default int compareTo(final BEXPair<T> o) {

0 commit comments

Comments
 (0)