fixed typo

This commit is contained in:
2020-04-01 10:03:52 +01:00
parent f96e4dc74c
commit 6f02f228d4

View File

@@ -7,7 +7,7 @@ import java.nio.charset.Charset;
public interface Dumper { public interface Dumper {
void dump(Value value, OutputStream is); void dump(Value value, OutputStream is);
void dump(Value value, Writer reader); void dump(Value value, Writer writer);
void dump(Value value, OutputStream stream, Charset encoding); void dump(Value value, OutputStream stream, Charset encoding);
} }