fix: added private constructor

This commit is contained in:
熊熊熊子路
2024-08-22 14:52:53 +08:00
parent a3f7efa56f
commit 2c036a96c7
2 changed files with 6 additions and 1 deletions
@@ -77,4 +77,9 @@ public final class BoolUtil {
.anyMatch(BooleanSupplier::getAsBoolean);
}
/**
* Private constructor prevent from being initialised.
*/
private BoolUtil() {}
}