Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f5e557a

Browse filesBrowse files
committed
Fixed minor bugs with file extensions
1 parent 40f8927 commit f5e557a
Copy full SHA for f5e557a

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/main/java/pulse/util/Serializer.java

Copy file name to clipboardExpand all lines: src/main/java/pulse/util/Serializer.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static void serialize() throws IOException, FileNotFoundException, ClassN
3030
fileChooser.setMultiSelectionEnabled(false);
3131
fileChooser.setFileSelectionMode(FILES_ONLY);
3232
fileChooser.setFileFilter(filter);
33-
File f = new File("./Saved/");
33+
File f = new File("Saved/");
3434
if (!f.exists()) {
3535
f.mkdir();
3636
}
@@ -66,7 +66,7 @@ public static void deserialize() throws FileNotFoundException {
6666
fileChooser.setMultiSelectionEnabled(false);
6767
fileChooser.setFileSelectionMode(FILES_ONLY);
6868
fileChooser.setFileFilter(filter);
69-
File f = new File("./Saved/");
69+
File f = new File("Saved/");
7070
if (f.exists()) {
7171
fileChooser.setCurrentDirectory(f);
7272
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.