HHH-10715 Dodgy comparison with Boolean instance
This commit is contained in:
parent
e1d217e10d
commit
1123337bae
|
@ -216,7 +216,7 @@ public final class Context {
|
|||
}
|
||||
|
||||
public boolean isFullyXmlConfigured() {
|
||||
return Boolean.TRUE == fullyXmlConfigured;
|
||||
return fullyXmlConfigured != null && fullyXmlConfigured.booleanValue();
|
||||
}
|
||||
|
||||
public void mappingDocumentFullyXmlConfigured(boolean fullyXmlConfigured) {
|
||||
|
|
Loading…
Reference in New Issue