parent
20920eab5a
commit
a383c52619
2 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ public class APKResourceImporter implements Importer
|
||||||
container.resourceFiles = JarUtils.loadResources(decodedResources);
|
container.resourceFiles = JarUtils.loadResources(decodedResources);
|
||||||
}
|
}
|
||||||
|
|
||||||
Objects.requireNonNull(container.resourceFiles).putAll(JarUtils.loadResources(tempCopy)); //copy and rename
|
container.resourceFiles.putAll(JarUtils.loadResources(tempCopy)); // copy and rename
|
||||||
// to prevent unicode filenames
|
// to prevent unicode filenames
|
||||||
|
|
||||||
String name = MiscUtils.getRandomizedName() + ".jar";
|
String name = MiscUtils.getRandomizedName() + ".jar";
|
||||||
|
|
|
@ -201,7 +201,7 @@ public class JarUtils
|
||||||
*/
|
*/
|
||||||
public static Map<String, byte[]> loadResources(final File zipFile) throws IOException {
|
public static Map<String, byte[]> loadResources(final File zipFile) throws IOException {
|
||||||
if (!zipFile.exists())
|
if (!zipFile.exists())
|
||||||
return null; //just ignore
|
return new LinkedHashMap<>(); // just ignore (don't return null for null-safety!)
|
||||||
|
|
||||||
Map<String, byte[]> files = new LinkedHashMap<>();
|
Map<String, byte[]> files = new LinkedHashMap<>();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue