Typo fix
This commit is contained in:
Dimitrios Liapis 2015-12-05 01:02:31 +02:00 committed by Brett Meyer
parent e79d5d4b39
commit b87d2046ad
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ public class MetamodelImpl implements Metamodel, Serializable {
type = embeddables.get( cls );
}
if ( type == null ) {
throw new IllegalArgumentException( "Not an managed type: " + cls );
throw new IllegalArgumentException( "Not a managed type: " + cls );
}
return (ManagedType<X>) type;
}