Typo fix
This commit is contained in:
Dimitrios Liapis 2015-12-05 01:02:31 +02:00 committed by Brett Meyer
parent 6e31e61f1a
commit 866491711e

View File

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