We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5994ff9 commit 39c0806Copy full SHA for 39c0806
hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BytecodeProviderImpl.java
@@ -110,10 +110,10 @@ public boolean isSynthetic() {
110
111
/**
112
* Constructs a ByteBuddy BytecodeProvider instance which attempts to auto-detect the target JVM version
113
- * from the currently running one, with a fallback on Java 11.
+ * from the currently running one, with a fallback on Java 17.
114
*/
115
public BytecodeProviderImpl() {
116
- this( ClassFileVersion.ofThisVm( ClassFileVersion.JAVA_V11 ) );
+ this( ClassFileVersion.ofThisVm( ClassFileVersion.JAVA_V17 ) );
117
}
118
119
0 commit comments