Skip to content

Commit 08452db

Browse files
committed
Fix API doc JedisAsserts.isTrue
1 parent d231ace commit 08452db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/redis/clients/jedis/util/JedisAsserts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void notNull(Object object, String message) {
2626
*
2727
* @param value the value to check
2828
* @param message the exception message to use if the assertion fails
29-
* @throws IllegalArgumentException if the object array contains a {@code null} element
29+
* @throws IllegalArgumentException if the value is {@code false}
3030
*/
3131
public static void isTrue(boolean value, String message) {
3232
if (!value) {

0 commit comments

Comments
 (0)