Fix toString NPE
This commit is contained in:
parent
2b70e64e6d
commit
8a655cc27e
|
|
@ -171,7 +171,7 @@ public final class LspModuleClassLoader extends ByteBufferDexClassLoader {
|
|||
public String toString() {
|
||||
return "LspModuleClassLoader[" +
|
||||
"module=" + apk + "," +
|
||||
"nativeLibraryDirs=" + Arrays.toString(nativeLibraryDirs.toArray()) + "," +
|
||||
"nativeLibraryDirs=" + nativeLibraryDirs == null ? "null" : Arrays.toString(nativeLibraryDirs.toArray()) + "," +
|
||||
super.toString() + "]";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue