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.
1 parent 158a75e commit 7fec575Copy full SHA for 7fec575
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