format code + add missing javadoc entries

This commit is contained in:
Honfika
2014-02-06 22:35:26 +01:00
parent d68da494f0
commit b6a733d806
142 changed files with 631 additions and 520 deletions

View File

@@ -331,6 +331,7 @@ public final class SWF implements TreeItem {
* @param listener
* @param parallelRead Use parallel threads?
* @throws IOException
* @throws java.lang.InterruptedException
*/
public SWF(InputStream is, ProgressListener listener, boolean parallelRead) throws IOException, InterruptedException {
this(is, listener, parallelRead, false);
@@ -344,6 +345,7 @@ public final class SWF implements TreeItem {
* @param parallelRead Use parallel threads?
* @param checkOnly Check only file validity
* @throws IOException
* @throws java.lang.InterruptedException
*/
public SWF(InputStream is, ProgressListener listener, boolean parallelRead, boolean checkOnly) throws IOException, InterruptedException {
byte[] hdr = new byte[3];