mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
final primitives are final
This commit is contained in:
parent
48cf381ed6
commit
7427d83ae2
@ -7,12 +7,12 @@ public class Storage extends Config {
|
|||||||
@Comment("MySQL section")
|
@Comment("MySQL section")
|
||||||
public static final class MYSQL {
|
public static final class MYSQL {
|
||||||
@Comment("Should MySQL be used?")
|
@Comment("Should MySQL be used?")
|
||||||
public static final boolean USE = false;
|
public static boolean USE = false;
|
||||||
public static final String HOST = "localhost";
|
public static String HOST = "localhost";
|
||||||
public static final String PORT = "3306";
|
public static String PORT = "3306";
|
||||||
public static final String USER = "root";
|
public static String USER = "root";
|
||||||
public static final String PASSWORD = "password";
|
public static String PASSWORD = "password";
|
||||||
public static final String DATABASE = "plot_db";
|
public static String DATABASE = "plot_db";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Comment("SQLite section")
|
@Comment("SQLite section")
|
||||||
|
Loading…
Reference in New Issue
Block a user