We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1269d65 commit d24624cCopy full SHA for d24624c
src/main/java/me/micartey/yawen/YawenRepository.java
@@ -115,12 +115,9 @@ public Optional<ClassLoader> loadCached(String name) {
115
File parent = new File(".yawen");
116
parent.mkdir();
117
118
- if(new File(parent, info.id + ".jar").exists())
+ if (new File(parent, info.id + ".jar").exists())
119
return false;
120
121
- // Remove untracked files - we don't need them anymore I guess?
122
- Arrays.stream(parent.listFiles()).forEach(File::delete);
123
-
124
URL website = new URL(info.browserDownloadUrl);
125
ReadableByteChannel byteChannel = Channels.newChannel(website.openStream());
126
0 commit comments