]> source.dussan.org Git - tigervnc.git/commitdiff
[BugFix] Changed type of member "dos" from DataOutputStream to DataOutput.
authorenikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Wed, 24 Dec 2008 03:41:00 +0000 (03:41 +0000)
committerenikey <enikey@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Wed, 24 Dec 2008 03:41:00 +0000 (03:41 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3447 3789f03b-4d11-0410-bbf8-ca57d06f2519

java/src/com/tightvnc/decoder/RawDecoder.java

index 2095220aba20bfe7301c2bc7e942ef6006e94002..c16989cb266836985c8980924083520823f07581 100644 (file)
@@ -3,7 +3,7 @@ package com.tightvnc.decoder;
 import com.tightvnc.vncviewer.RecordInterface;
 import com.tightvnc.vncviewer.RfbInputStream;
 import java.io.IOException;
-import java.io.DataOutputStream;
+import java.io.DataOutput;
 import java.awt.Graphics;
 import java.awt.Image;
 import java.awt.image.ColorModel;
@@ -67,7 +67,7 @@ public class RawDecoder {
   // in RawDecoder class to record session
   //
 
-  public void setDataOutputStream(DataOutputStream os) {
+  public void setDataOutputStream(DataOutput os) {
     dos = os;
   }
 
@@ -197,7 +197,7 @@ public class RawDecoder {
   protected RfbInputStream rfbis = null;
   protected Graphics graphics = null;
   protected RecordInterface rec = null;
-  protected DataOutputStream dos = null;
+  protected DataOutput dos = null;
 
   //
   // This data must be shared between decoders