fix a very stupid nullptr
All checks were successful
/ Build BaseBand Loader (push) Successful in 5m3s
All checks were successful
/ Build BaseBand Loader (push) Successful in 5m3s
This commit is contained in:
parent
376a04e360
commit
688732b9f8
1 changed files with 1 additions and 0 deletions
|
@ -102,6 +102,7 @@ public class CustomClassLoader extends ClassLoader implements Util {
|
|||
URL r = Launch.classLoader.findResource(name);
|
||||
if(r == null)
|
||||
return super.findResource(name);
|
||||
return r;
|
||||
}
|
||||
try {
|
||||
return URLWrapper.wrap(name, data[0]);
|
||||
|
|
Loading…
Add table
Reference in a new issue