mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-18 12:28:20 +00:00
binary file search fixed
This commit is contained in:
@@ -53,7 +53,7 @@ public class BinarySWFBundle implements SWFBundle {
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReReadableInputStream getSWF(String key) {
|
||||
public SeekableInputStream getSWF(String key) {
|
||||
if(!key.startsWith("[")){
|
||||
return null;
|
||||
}
|
||||
@@ -77,7 +77,7 @@ public class BinarySWFBundle implements SWFBundle {
|
||||
@Override
|
||||
public Map<String, SeekableInputStream> getAll() {
|
||||
Map<String, SeekableInputStream> ret = new HashMap<>();
|
||||
for(String key:getKeys()){
|
||||
for(String key : getKeys()){
|
||||
ret.put(key, getSWF(key));
|
||||
}
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user