mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Removed consumers from BdfWriter.
This commit is contained in:
@@ -9,9 +9,6 @@ public interface BdfWriter {
|
||||
void flush() throws IOException;
|
||||
void close() throws IOException;
|
||||
|
||||
void addConsumer(Consumer c);
|
||||
void removeConsumer(Consumer c);
|
||||
|
||||
void writeNull() throws IOException;
|
||||
void writeBoolean(boolean b) throws IOException;
|
||||
void writeInteger(long l) throws IOException;
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
package org.briarproject.api.data;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public interface Consumer {
|
||||
|
||||
void write(byte b) throws IOException;
|
||||
|
||||
void write(byte[] b, int off, int len) throws IOException;
|
||||
}
|
||||
Reference in New Issue
Block a user