Remove BdfWriter methods for manually constructing lists and dicts.

This commit is contained in:
akwizgran
2023-02-18 16:24:21 +00:00
parent 63172ef2e4
commit 98064e9efe
4 changed files with 7 additions and 60 deletions

View File

@@ -24,13 +24,5 @@ public interface BdfWriter {
void writeList(Collection<?> c) throws IOException;
void writeListStart() throws IOException;
void writeListEnd() throws IOException;
void writeDictionary(Map<?, ?> m) throws IOException;
void writeDictionaryStart() throws IOException;
void writeDictionaryEnd() throws IOException;
}