HHH-14335 Remember the resolved type in SimpleValue#getType instead of resolving multiple times

This commit is contained in:
Christian Beikov 2020-11-19 11:18:34 +01:00 committed by Sanne Grinovero
parent 93b8095ef6
commit 095eef2dcb
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ public class SimpleValue implements KeyValue {
throw new MappingException( msg );
}
return result;
return type = result;
}
@Override