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, "");
|
||||
}
|
||||
|
||||
DataController.SERVER_URL = config.toServerUrl();
|
||||
|
||||
System.out.println("Ignore 'Illegal reflective access operation'-Warning. See https://github.com/sshahine/JFoenix/issues/1170");
|
||||
|
||||
if(
|
||||
@ -39,8 +41,6 @@ public class MainApplication extends Application {
|
||||
ConfigLoader.save(config);
|
||||
}
|
||||
|
||||
DataController.SERVER_URL = config.toServerUrl();
|
||||
|
||||
// Load main-scene
|
||||
loadMainScene(stage);
|
||||
|
||||
|
@ -56,7 +56,7 @@ public class Event {
|
||||
this.isFullDay = isFullDay;
|
||||
this.isPrivate = isPrivate;
|
||||
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.ownerId = ownerId;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user