mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
Simplify JsonTypeInfo stub
Co-authored-by: Anders Schack-Mulligen <aschackmull@users.noreply.github.com>
This commit is contained in:
@@ -14,14 +14,8 @@ public @interface JsonTypeInfo {
|
||||
CLASS("@class"),
|
||||
MINIMAL_CLASS("@c");
|
||||
|
||||
private final String _defaultPropertyName;
|
||||
private Id(String defProp) { }
|
||||
|
||||
private Id(String defProp) {
|
||||
this._defaultPropertyName = defProp;
|
||||
}
|
||||
|
||||
public String getDefaultPropertyName() {
|
||||
return this._defaultPropertyName;
|
||||
}
|
||||
public String getDefaultPropertyName() { return null; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user