Skip to content
Snippets Groups Projects
Commit 916fa665 authored by akwizgran's avatar akwizgran
Browse files

ReliabilityLayer doesn't need to expose a public WriteHandler interface.

parent 5876583f
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ package net.sf.briar.api.reliability;
import java.io.InputStream;
import java.io.OutputStream;
public interface ReliabilityLayer extends ReadHandler, WriteHandler {
public interface ReliabilityLayer extends ReadHandler {
void start();
......
......@@ -14,7 +14,7 @@ import java.util.logging.Logger;
import net.sf.briar.api.reliability.ReliabilityLayer;
import net.sf.briar.api.reliability.WriteHandler;
class ReliabilityLayerImpl implements ReliabilityLayer {
class ReliabilityLayerImpl implements ReliabilityLayer, WriteHandler {
private static final int TICK_INTERVAL = 500; // Milliseconds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment