mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Removed the serialisation reader's internal array of struct readers.
This commit is contained in:
@@ -18,9 +18,6 @@ public interface Reader {
|
||||
void addConsumer(Consumer c);
|
||||
void removeConsumer(Consumer c);
|
||||
|
||||
void addStructReader(int id, StructReader<?> r);
|
||||
void removeStructReader(int id);
|
||||
|
||||
boolean hasBoolean() throws IOException;
|
||||
boolean readBoolean() throws IOException;
|
||||
|
||||
@@ -68,6 +65,5 @@ public interface Reader {
|
||||
void readNull() throws IOException;
|
||||
|
||||
boolean hasStruct(int id) throws IOException;
|
||||
<T> T readStruct(int id, Class<T> t) throws IOException;
|
||||
void readStructId(int id) throws IOException;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user