Minor fixes
This commit is contained in:
parent
dc78d69a00
commit
351bcd524d
@ -22,6 +22,8 @@ public class MainApplication extends Application {
|
|||||||
config = new Config(false, -1, "");
|
config = new Config(false, -1, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DataController.SERVER_URL = config.toServerUrl();
|
||||||
|
|
||||||
System.out.println("Ignore 'Illegal reflective access operation'-Warning. See https://github.com/sshahine/JFoenix/issues/1170");
|
System.out.println("Ignore 'Illegal reflective access operation'-Warning. See https://github.com/sshahine/JFoenix/issues/1170");
|
||||||
|
|
||||||
if(
|
if(
|
||||||
@ -39,8 +41,6 @@ public class MainApplication extends Application {
|
|||||||
ConfigLoader.save(config);
|
ConfigLoader.save(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
DataController.SERVER_URL = config.toServerUrl();
|
|
||||||
|
|
||||||
// Load main-scene
|
// Load main-scene
|
||||||
loadMainScene(stage);
|
loadMainScene(stage);
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ public class Event {
|
|||||||
this.isFullDay = isFullDay;
|
this.isFullDay = isFullDay;
|
||||||
this.isPrivate = isPrivate;
|
this.isPrivate = isPrivate;
|
||||||
if (start != null) this.start = start.toString();
|
if (start != null) this.start = start.toString();
|
||||||
if (start != null) this.end = end.toString();
|
if (end != null) this.end = end.toString();
|
||||||
this.date = date;
|
this.date = date;
|
||||||
this.ownerId = ownerId;
|
this.ownerId = ownerId;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user