add unused warning suppressions to pojo classes
This commit is contained in:
parent
7eb9a5a9e0
commit
f8f5877619
3 changed files with 6 additions and 12 deletions
|
@ -1,5 +1,6 @@
|
|||
package lol.pyr.znpcsplus.conversion.znpcs.model;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public class ZNpcsAction {
|
||||
private String actionType;
|
||||
private String clickType;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package lol.pyr.znpcsplus.conversion.znpcs.model;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public class ZNpcsLocation {
|
||||
private String world;
|
||||
private double x;
|
||||
|
|
|
@ -3,11 +3,11 @@ package lol.pyr.znpcsplus.conversion.znpcs.model;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public class ZNpcsModel {
|
||||
private int id;
|
||||
private double hologramHeight;
|
||||
private String skin;
|
||||
private String signature;
|
||||
private String skinName;
|
||||
private String glowName;
|
||||
private ZNpcsLocation location;
|
||||
private String npcType;
|
||||
|
@ -24,16 +24,8 @@ public class ZNpcsModel {
|
|||
return hologramHeight;
|
||||
}
|
||||
|
||||
public String getSkin() {
|
||||
return skin;
|
||||
}
|
||||
|
||||
public String getSignature() {
|
||||
return signature;
|
||||
}
|
||||
|
||||
public String getGlowName() {
|
||||
return glowName;
|
||||
public String getSkinName() {
|
||||
return skinName;
|
||||
}
|
||||
|
||||
public ZNpcsLocation getLocation() {
|
||||
|
|
Loading…
Reference in a new issue