Spring cleaning: avoid unnecessary static imports

This commit is contained in:
Sam Brannen
2024-02-23 11:54:15 +01:00
parent 4bd1485ce4
commit d0ffc16efc
3 changed files with 3 additions and 6 deletions

View File

@@ -20,12 +20,11 @@ import java.util.function.Predicate;
import com.oracle.svm.core.annotate.Alias;
import com.oracle.svm.core.annotate.RecomputeFieldValue;
import com.oracle.svm.core.annotate.RecomputeFieldValue.Kind;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
import org.hibernate.bytecode.spi.BytecodeProvider;
import static com.oracle.svm.core.annotate.RecomputeFieldValue.Kind;
/**
* Hibernate substitution designed to prevent ByteBuddy reachability on native, and to enforce the
* usage of {@code org.hibernate.bytecode.internal.none.BytecodeProviderImpl} with Hibernate 6.3+.