mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 03:38:16 +00:00
HHH-15484 Renaming GraalVMStaticAutofeature to GraalVMStaticFeature
This commit is contained in:
parent
7d34f86a95
commit
577790b987
@ -33,7 +33,7 @@
|
||||
* </p>
|
||||
* @author Sanne Grinovero
|
||||
*/
|
||||
public class GraalVMStaticAutofeature implements Feature {
|
||||
public class GraalVMStaticFeature implements Feature {
|
||||
|
||||
public void beforeAnalysis(Feature.BeforeAnalysisAccess before) {
|
||||
final Class<?>[] needsHavingSimpleConstructors = StaticClassLists.typesNeedingDefaultConstructorAccessible();
|
||||
@ -56,6 +56,6 @@ public void beforeAnalysis(Feature.BeforeAnalysisAccess before) {
|
||||
|
||||
@Override
|
||||
public String getDescription() {
|
||||
return "Hibernate ORM GraalVM static reflection registration";
|
||||
return "Hibernate ORM's static reflection registrations for GraalVM";
|
||||
}
|
||||
}
|
@ -20,7 +20,7 @@
|
||||
/**
|
||||
* This registers all ANTLR parser nodes for reflection, something that is necessary
|
||||
* as the HQL parser's inner workings are based on reflection.
|
||||
* This is different than the "static" registrations of {@link GraalVMStaticAutofeature}
|
||||
* This is different than the "static" registrations of {@link GraalVMStaticFeature}
|
||||
* as we only register these if the HQL parser is actually reachable: some particularly
|
||||
* simple applications might not need dynamic queries being expressed in string form,
|
||||
* and for such cases the reflective registrations can be skipped.
|
||||
@ -51,7 +51,7 @@ public void beforeAnalysis(BeforeAnalysisAccess access) {
|
||||
|
||||
@Override
|
||||
public String getDescription() {
|
||||
return "Hibernate ORM HQL Parser Support";
|
||||
return "Hibernate ORM's support for HQL Parser in GraalVM";
|
||||
}
|
||||
|
||||
@AllowSysOut
|
||||
|
Loading…
x
Reference in New Issue
Block a user