HHH-12501 Fallback implementation for BytecodeProvider should match the default

This commit is contained in:
Sanne Grinovero 2018-04-17 12:03:56 +01:00
parent d3218581e8
commit 1f7457133c
1 changed files with 1 additions and 1 deletions

View File

@ -350,6 +350,6 @@ public final class Environment implements AvailableSettings {
// currently we assume it is only ever the Strings "javassist" or "bytebuddy"...
LOG.unknownBytecodeProvider( providerName, BYTECODE_PROVIDER_NAME_DEFAULT );
return new org.hibernate.bytecode.internal.javassist.BytecodeProviderImpl();
return new org.hibernate.bytecode.internal.bytebuddy.BytecodeProviderImpl();
}
}