Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
*
* @param <T> the type of the result to be handled by the methods
* @author zihluwang
* @version 1.1.0
* @version 1.6.1
* @see java.util.function.Supplier
* @see java.util.function.BooleanSupplier
* @see java.lang.Runnable
Expand Down Expand Up @@ -225,4 +225,13 @@ public void handle(Runnable ifHandler) {
*/
private final boolean result;

/**
* Get the boolean result.
*
* @return the result
*/
public boolean getResult() {
return result;
}

}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ springVersion=6.1.3
springBootVersion=3.2.3

buildGroupId=com.onixbyte
buildVersion=1.6.0
buildVersion=1.6.1
projectUrl=https://onixbyte.com/JDevKit
projectGithubUrl=https://github.com/OnixByte/JDevKit
licenseName=The Apache License, Version 2.0
Expand Down