Fixed potential integration test NPE
This commit is contained in:
parent
604aa8d1d6
commit
192a66cd9f
@ -55,6 +55,6 @@ public class Boolean_TF_LC_Converter extends EnumConverter<String, Boolean_TF_LC
|
||||
|
||||
@Override
|
||||
public String to(Boolean_TF_LC userObject) {
|
||||
return userObject.getValue();
|
||||
return userObject == null ? null : userObject.getValue();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user