Skip to content

Commit d7ce03e

Browse files
authored
refactor: make asBoolean public (#2537)
Signed-off-by: Chris Laprun <[email protected]>
1 parent c1c65b1 commit d7ce03e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/BooleanWithUndefined.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
public enum BooleanWithUndefined {
77
TRUE, FALSE, UNDEFINED;
88

9-
Boolean asBoolean() {
9+
public Boolean asBoolean() {
1010
switch (this) {
1111
case TRUE:
1212
return Boolean.TRUE;

0 commit comments

Comments
 (0)