Skip to content

Commit

Permalink
chore: Cleaning up Draw3D
Browse files Browse the repository at this point in the history
  • Loading branch information
Pazaz committed May 31, 2024
1 parent dccd288 commit 58061ed
Show file tree
Hide file tree
Showing 2 changed files with 614 additions and 769 deletions.
4 changes: 2 additions & 2 deletions client/src/main/java/sign/signlink.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,14 @@ public static String findcachedir() {
cache = new File(dir);

if (!cache.exists() || !cache.canWrite()) {
System.out.println("Unable to find or write to cache directory: " + dir);
// System.out.println("Unable to find or write to cache directory: " + dir);
continue;
}
}

cache = new File(dir + store);
if ((!cache.exists() && !cache.mkdir()) || !cache.canWrite()) {
System.out.println("Unable to find or write to cache directory: " + dir + store + "/");
// System.out.println("Unable to find or write to cache directory: " + dir + store + "/");
continue;
}

Expand Down
Loading

0 comments on commit 58061ed

Please sign in to comment.