Fixed two security issues from sonar

This commit is contained in:
tastybento 2019-08-29 15:41:56 -07:00
parent fa4c772572
commit bbbe2565eb
2 changed files with 13 additions and 14 deletions

View File

@ -478,7 +478,7 @@ public class Flag implements Comparable<Flag> {
private int cooldown; private int cooldown;
// Mode // Mode
public Mode mode = Mode.EXPERT; private Mode mode = Mode.EXPERT;
/** /**
* Builder for making flags * Builder for making flags

View File

@ -42,7 +42,6 @@ public class ItemStackTypeAdapter extends TypeAdapter<ItemStack> {
c.loadFromString(reader.nextString()); c.loadFromString(reader.nextString());
return c.getItemStack("is"); return c.getItemStack("is");
} catch (InvalidConfigurationException e) { } catch (InvalidConfigurationException e) {
e.printStackTrace();
throw new IOException(e.getMessage()); throw new IOException(e.getMessage());
} }
} }