show swf bundles in tree

This commit is contained in:
Honfika
2014-01-21 20:55:14 +01:00
parent 254b91dd5d
commit 13722ba24c
29 changed files with 715 additions and 328 deletions
@@ -34,9 +34,10 @@ import org.xml.sax.helpers.DefaultHandler;
*/
public class SWC extends ZippedSWFBundle {
public SWC(InputStream is) {
public SWC(InputStream is) throws IOException {
super(is);
keySet.clear();
this.is.reset();
ZipInputStream zip = new ZipInputStream(this.is);
ZipEntry entry;
try {