fix SCL findResource
All checks were successful
/ Build BaseBand Loader (push) Successful in 2m0s

This commit is contained in:
Daniella / Tove 2024-10-14 02:28:43 +02:00
parent 51b2727555
commit c2235c5c2c
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
2 changed files with 8 additions and 5 deletions

View file

@ -394,7 +394,7 @@ public class Loader implements Util {
byte[] bytes = new StreamReader(stream).readAllAsBytes(); byte[] bytes = new StreamReader(stream).readAllAsBytes();
try(FileOutputStream os = new FileOutputStream(filename)) { try(FileOutputStream os = new FileOutputStream(filename)) {
os.write(bytes); os.write(bytes);
} } catch (IOException ignored) { }
stream = new ByteArrayInputStream(bytes); stream = new ByteArrayInputStream(bytes);
} }
ZipInputStream jar = new ZipInputStream(stream); ZipInputStream jar = new ZipInputStream(stream);

View file

@ -23,11 +23,14 @@ public class SimpleClassLoader extends ClassLoader {
@Override @Override
protected URL findResource(String name) { protected URL findResource(String name) {
try { if(classes.get(name) != null) {
return URLWrapper.wrap(name, classes.get(name)); try {
} catch (MalformedURLException e) { return URLWrapper.wrap(name, classes.get(name));
throw new RuntimeException(e); } catch (MalformedURLException e) {
throw new RuntimeException(e);
}
} }
return null;
} }
@Override @Override