HHH-13800 fix typo in AbstractGraphNode's verifyMutability() method
This commit is contained in:
parent
207c0d68be
commit
0b938bd16b
|
@ -32,7 +32,7 @@ public abstract class AbstractGraphNode<J> implements GraphNodeImplementor<J> {
|
|||
|
||||
protected void verifyMutability() {
|
||||
if ( !isMutable() ) {
|
||||
throw new IllegalStateException( "Cannot mutable immutable graph node" );
|
||||
throw new IllegalStateException( "Cannot mutate immutable graph node" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue