HHH-13800 fix typo in AbstractGraphNode's verifyMutability() method

This commit is contained in:
Nathan Xu 2020-01-06 16:38:35 -05:00
parent 207c0d68be
commit 0b938bd16b
1 changed files with 1 additions and 1 deletions

View File

@ -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" );
}
}
}