Skip to content

Commit 5582645

Browse files
authored
Merge pull request #51057 from gastaldi/fix_cap
Correct comments and descriptions in Hibernate Feature
2 parents 5da5a30 + 9112f19 commit 5582645

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/hibernate-orm/runtime/src/main/java/io/quarkus/hibernate/orm/runtime/graal/RegisterServicesForReflectionFeature.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
import org.graalvm.nativeimage.hosted.RuntimeReflection;
88

99
/**
10-
* Makes methods of reachable hibernate services accessible through {@link Class#getMethods()}.
10+
* Makes methods of reachable Hibernate services accessible through {@link Class#getMethods()}.
1111
*
1212
* See <a href="https://github.com/quarkusio/quarkus/issues/45525">Github issue #45525</a>.
1313
*/
1414
public class RegisterServicesForReflectionFeature implements Feature {
1515

1616
@Override
1717
public String getDescription() {
18-
return "Makes methods of reachable hibernate services accessible through getMethods()`";
18+
return "Makes methods of reachable Hibernate services accessible through Class#getMethods()";
1919
}
2020

2121
// The {@code duringAnalysis} method is invoked multiple times and increases the set of reachable types, thus we

0 commit comments

Comments
 (0)