mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Renamed raw data type.
This commit is contained in:
@@ -30,9 +30,9 @@ public interface Reader {
|
||||
String readString(int maxLength) throws IOException;
|
||||
void skipString() throws IOException;
|
||||
|
||||
boolean hasBytes() throws IOException;
|
||||
byte[] readBytes(int maxLength) throws IOException;
|
||||
void skipBytes() throws IOException;
|
||||
boolean hasRaw() throws IOException;
|
||||
byte[] readRaw(int maxLength) throws IOException;
|
||||
void skipRaw() throws IOException;
|
||||
|
||||
boolean hasList() throws IOException;
|
||||
void readListStart() throws IOException;
|
||||
|
||||
@@ -17,7 +17,7 @@ public interface Writer {
|
||||
void writeInteger(long l) throws IOException;
|
||||
void writeFloat(double d) throws IOException;
|
||||
void writeString(String s) throws IOException;
|
||||
void writeBytes(byte[] b) throws IOException;
|
||||
void writeRaw(byte[] b) throws IOException;
|
||||
|
||||
void writeList(Collection<?> c) throws IOException;
|
||||
void writeListStart() throws IOException;
|
||||
|
||||
Reference in New Issue
Block a user