removes org.json from srcjar
[jalview.git] / srcjar / javajs / api / GenericBinaryDocumentReader.java
diff --git a/srcjar/javajs/api/GenericBinaryDocumentReader.java b/srcjar/javajs/api/GenericBinaryDocumentReader.java
deleted file mode 100644 (file)
index aea6f63..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package javajs.api;
-
-public interface GenericBinaryDocumentReader {
-
-  byte readByte() throws Exception;
-
-  byte[] readBytes(int n) throws Exception;
-
-  int readUInt8() throws Exception;
-
-  int readInt() throws Exception;
-
-  short readShort() throws Exception;
-
-  int readUnsignedShort() throws Exception;
-
-  long readLong() throws Exception;
-
-  float readFloat() throws Exception;
-
-  double readDouble() throws Exception;
-
-  String readString(int i) throws Exception;
-
-}