mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 11:40:41 +00:00
final primitives are final
This commit is contained in:
parent
48cf381ed6
commit
7427d83ae2
1 changed files with 6 additions and 6 deletions
|
@ -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 a new issue