swf input stream fixes, javadoc parameters

This commit is contained in:
honfika
2014-06-19 23:42:15 +02:00
parent 52e6142fe5
commit 3cbf152b61
74 changed files with 2398 additions and 2492 deletions

View File

@@ -48,10 +48,12 @@ import java.util.List;
public class SWFLimitedInputStream {
private SWFInputStream sis;
private long limit;
public SWF swf;
public SWFLimitedInputStream(SWF swf, SWFInputStream sis, long limit) {
public SWFLimitedInputStream(SWF swf, SWFInputStream sis, long limit) {
this.swf = swf;
this.limit = limit;
this.sis = sis;
}