Put the strings in the same getter. It makes no difference and is cleaner
This commit is contained in:
parent
406627e404
commit
72f8aad151
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>LibsDisguises</groupId>
|
<groupId>LibsDisguises</groupId>
|
||||||
<artifactId>LibsDisguises</artifactId>
|
<artifactId>LibsDisguises</artifactId>
|
||||||
<version>8.2.5</version>
|
<version>8.2.5-SNAPSHOT</version>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src</sourceDirectory>
|
<sourceDirectory>src</sourceDirectory>
|
||||||
|
@ -47,13 +47,11 @@ public class LibsDisguises extends JavaPlugin {
|
|||||||
File configFile = new File(getDataFolder(), "config.yml");
|
File configFile = new File(getDataFolder(), "config.yml");
|
||||||
InputStream stream = null;
|
InputStream stream = null;
|
||||||
FileReader reader = null;
|
FileReader reader = null;
|
||||||
String toWrite = "";
|
|
||||||
String toRead = "";
|
|
||||||
try {
|
try {
|
||||||
stream = getClassLoader().getResource("config.yml").openStream();
|
stream = getClassLoader().getResource("config.yml").openStream();
|
||||||
toWrite = read(new InputStreamReader(stream));
|
String toWrite = read(new InputStreamReader(stream));
|
||||||
reader = new FileReader(configFile);
|
reader = new FileReader(configFile);
|
||||||
toRead = read(reader);
|
String toRead = read(reader);
|
||||||
|
|
||||||
if (!toRead.equals(toWrite)) {
|
if (!toRead.equals(toWrite)) {
|
||||||
try {
|
try {
|
||||||
@ -92,7 +90,7 @@ public class LibsDisguises extends JavaPlugin {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
// Here I use reflection to set the plugin for Disguise..
|
// Here I use reflection to set the plugin for Disguise..
|
||||||
// Kind of stupid but I don't want open API calls for a commonly used object.
|
// Kind of stupid but I don't want open API calls for a commonly used class.
|
||||||
Field field = Disguise.class.getDeclaredField("plugin");
|
Field field = Disguise.class.getDeclaredField("plugin");
|
||||||
field.setAccessible(true);
|
field.setAccessible(true);
|
||||||
field.set(null, this);
|
field.set(null, this);
|
||||||
|
Loading…
Reference in New Issue
Block a user