Skip to content

Commit 7b9b472

Browse files
committed
PULsE v1.98
1 parent 1eccdb2 commit 7b9b472

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

src/main/java/pulse/ui/components/PulseMainMenu.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,9 @@ private void initComponents() {
194194
serializeItem.addActionListener(e -> {
195195
try {
196196
Serializer.serialize();
197-
} catch (IOException ex) {
198-
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
199-
} catch (ClassNotFoundException ex) {
197+
} catch (IOException | ClassNotFoundException ex) {
200198
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
201-
}
199+
}
202200
});
203201
var deserializeItem = new JMenuItem("Load Session...");
204202

@@ -209,8 +207,6 @@ private void initComponents() {
209207
Serializer.deserialize();
210208
} catch (IOException ex) {
211209
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
212-
} catch (ClassNotFoundException ex) {
213-
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
214210
}
215211

216212
});

src/main/resources/Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.97c
1+
1.98

src/main/resources/messages.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,4 @@ MixedScheme2.5=<html><b>Increased Accuracy Semi-implicit Scheme (NL)</b><ul styl
291291
TextWrap.0=<html><body><p style='width: 300px;'>
292292
TextWrap.1=</p></body></html>
293293
TextWrap.2=<html><body><p style='width: 185px;'>
294-
msg.running=An instance of PULsE appears to be running. Please switch back to the running version or delete the pulse.lock file found in the PULsE directory.
294+
msg.running=An instance of PULsE appears to be running. Please switch back to the running version or delete the pulse.lock file in the user home directory.

0 commit comments

Comments
 (0)