project updated.
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,11 +1,11 @@
|
|||||||
arguments=--init-script /home/sherwinp/.config/VSCodium/User/globalStorage/redhat.java/1.50.0/config_linux/org.eclipse.osgi/58/0/.cp/gradle/init/init.gradle --init-script /home/sherwinp/.config/VSCodium/User/globalStorage/redhat.java/1.50.0/config_linux/org.eclipse.osgi/58/0/.cp/gradle/protobuf/init.gradle
|
arguments=--init-script C\:\\Users\\sherw\\AppData\\Roaming\\VSCodium\\User\\globalStorage\\redhat.java\\1.52.0\\config_win\\org.eclipse.osgi\\58\\0\\.cp\\gradle\\init\\init.gradle --init-script C\:\\Users\\sherw\\AppData\\Roaming\\VSCodium\\User\\globalStorage\\redhat.java\\1.52.0\\config_win\\org.eclipse.osgi\\58\\0\\.cp\\gradle\\protobuf\\init.gradle
|
||||||
auto.sync=true
|
auto.sync=true
|
||||||
build.scans.enabled=false
|
build.scans.enabled=false
|
||||||
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
|
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
|
||||||
connection.project.dir=
|
connection.project.dir=
|
||||||
eclipse.preferences.version=1
|
eclipse.preferences.version=1
|
||||||
gradle.user.home=
|
gradle.user.home=
|
||||||
java.home=/usr/lib/jvm/java-25-openjdk
|
java.home=C\:/Program Files/jdk-26
|
||||||
jvm.arguments=
|
jvm.arguments=
|
||||||
offline.mode=false
|
offline.mode=false
|
||||||
override.workspace.settings=true
|
override.workspace.settings=true
|
||||||
|
|||||||
Vendored
+1
-1
@@ -16,7 +16,7 @@
|
|||||||
"name": "Windows Current File",
|
"name": "Windows Current File",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"mainClass": "edu.bookocontacts.AppSceneView",
|
"mainClass": "edu.bookocontacts.AppSceneView",
|
||||||
"vmArgs": " --module-path 'C://Program Files//javafx-25//lib' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
|
"vmArgs": " --class-path .:edu.bookocontacts:edu.bookocontacts.model --module-path 'C://Program Files//javafx-25//lib' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "java",
|
"type": "java",
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ public class ViewController implements Initializable {
|
|||||||
try {
|
try {
|
||||||
updatecontactView();
|
updatecontactView();
|
||||||
} catch (IllegalArgumentException ex) {
|
} catch (IllegalArgumentException ex) {
|
||||||
log(ex.getMessage());
|
logger.log(Level.WARNING, ex.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -113,7 +113,7 @@ public class ViewController implements Initializable {
|
|||||||
try {
|
try {
|
||||||
ct.save();
|
ct.save();
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
log(ex.getMessage());
|
logger.log(Level.WARNING, ex.getMessage());
|
||||||
}
|
}
|
||||||
updatecontactView();
|
updatecontactView();
|
||||||
}
|
}
|
||||||
@@ -132,7 +132,7 @@ public class ViewController implements Initializable {
|
|||||||
ct.markDeleted();
|
ct.markDeleted();
|
||||||
ct.save();
|
ct.save();
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
log(ex.getMessage());
|
logger.log(Level.WARNING, ex.getMessage());
|
||||||
}
|
}
|
||||||
updatecontactView();
|
updatecontactView();
|
||||||
}
|
}
|
||||||
@@ -152,7 +152,7 @@ public class ViewController implements Initializable {
|
|||||||
updatedContact.setId(ct.getId());
|
updatedContact.setId(ct.getId());
|
||||||
ct.save();
|
ct.save();
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
log(ex.getMessage());
|
logger.log(Level.WARNING, ex.getMessage());
|
||||||
}
|
}
|
||||||
updatecontactView();
|
updatecontactView();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user