Remove methods for manually reading lists and dictionaries.

This commit is contained in:
akwizgran
2023-02-20 13:05:38 +00:00
parent ccd6ed9ff0
commit 36db5b48ef
3 changed files with 9 additions and 92 deletions

View File

@@ -60,23 +60,11 @@ public interface BdfReader {
BdfList readList() throws IOException;
void readListStart() throws IOException;
boolean hasListEnd() throws IOException;
void readListEnd() throws IOException;
void skipList() throws IOException;
boolean hasDictionary() throws IOException;
BdfDictionary readDictionary() throws IOException;
void readDictionaryStart() throws IOException;
boolean hasDictionaryEnd() throws IOException;
void readDictionaryEnd() throws IOException;
void skipDictionary() throws IOException;
}