diff options
Diffstat (limited to 'java/src/com/tightvnc/decoder/RawDecoder.java')
-rw-r--r-- | java/src/com/tightvnc/decoder/RawDecoder.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/java/src/com/tightvnc/decoder/RawDecoder.java b/java/src/com/tightvnc/decoder/RawDecoder.java index f093b726..9ef167a7 100644 --- a/java/src/com/tightvnc/decoder/RawDecoder.java +++ b/java/src/com/tightvnc/decoder/RawDecoder.java @@ -1,6 +1,5 @@ package com.tightvnc.decoder; -import com.tightvnc.vncviewer.RecordInterface; import com.tightvnc.vncviewer.RfbInputStream; import java.io.IOException; import java.io.DataOutput; @@ -56,10 +55,6 @@ public class RawDecoder { framebufferHeight = h; } - public void setSessionRecorder(RecordInterface ri) { - rec = ri; - } - // // FIXME: Rename this method after we don't need RecordInterface // in RawDecoder class to record session @@ -206,7 +201,6 @@ public class RawDecoder { protected int framebufferHeight = 0; protected RfbInputStream rfbis = null; protected Graphics graphics = null; - protected RecordInterface rec = null; protected DataOutput dos = null; protected boolean enableEncodingRecordWritting = true; |