You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/resteasy-classic/resteasy-common/spi/src/main/java/io/quarkus/resteasy/common/spi/ResteasyDotNames.java
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
packageio.quarkus.resteasy.common.spi;
2
2
3
+
importjava.lang.reflect.Modifier;
3
4
importjava.util.HashSet;
4
5
importjava.util.List;
5
6
importjava.util.Set;
@@ -96,7 +97,10 @@ private static class IgnoreMethodForReflectionPredicate implements Predicate<Met
96
97
97
98
@Override
98
99
publicbooleantest(MethodInfomethodInfo) {
99
-
returnmethodInfo.hasAnnotation(JSON_IGNORE)
100
+
// Non-public methods are not required by JSON serialisation, and may lead to leaking of implementation
Copy file name to clipboardExpand all lines: extensions/resteasy-reactive/rest-common/deployment/src/main/java/io/quarkus/resteasy/reactive/common/deployment/QuarkusResteasyReactiveDotNames.java
0 commit comments