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.
2 parents 50497eb + 7fec575 commit 893f84fCopy full SHA for 893f84f
java/ql/test/stubs/jackson-databind-2.10/com/fasterxml/jackson/annotation/JsonTypeInfo.java
@@ -14,14 +14,8 @@ public static enum Id {
14
CLASS("@class"),
15
MINIMAL_CLASS("@c");
16
17
- private final String _defaultPropertyName;
+ private Id(String defProp) { }
18
19
- private Id(String defProp) {
20
- this._defaultPropertyName = defProp;
21
- }
22
-
23
- public String getDefaultPropertyName() {
24
- return this._defaultPropertyName;
25
+ public String getDefaultPropertyName() { return null; }
26
}
27
0 commit comments