We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8632a3 commit b87d363Copy full SHA for b87d363
spring-batch-core/src/main/java/org/springframework/batch/core/BatchStatus.java
@@ -137,7 +137,7 @@ public boolean isLessThan(BatchStatus other) {
137
138
/**
139
* @param other A status value to which to compare.
140
- * @return {@code true} if this is less than {@code other}.
+ * @return {@code true} if this is less than or equal to {@code other}.
141
*/
142
public boolean isLessThanOrEqualTo(BatchStatus other) {
143
return this.compareTo(other) <= 0;
0 commit comments