test fixed

This commit is contained in:
honfika
2014-08-16 13:52:01 +02:00
parent 18674f59a0
commit e719e4ad32
3 changed files with 16 additions and 7 deletions
@@ -36,7 +36,7 @@ import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class ABCInputStream {
public class ABCInputStream implements AutoCloseable {
private static final int CLASS_PROTECTED_NS = 8;
private static final int ATTR_METADATA = 4;
@@ -476,4 +476,8 @@ public class ABCInputStream {
public long getPosition() {
return bytesRead;
}
@Override
public void close() {
}
}