aboutsummaryrefslogtreecommitdiffstats
path: root/java/com/tigervnc/network/FileDescriptor.java
diff options
context:
space:
mode:
authorBrian Hinz <bphinz@users.sourceforge.net>2012-03-18 21:39:04 +0000
committerBrian Hinz <bphinz@users.sourceforge.net>2012-03-18 21:39:04 +0000
commit35022e07a90807f5f0686c146e49f469d4b3f2fd (patch)
tree9734715a7e8f83eb7c6d31867e5cef7e7be0f5e8 /java/com/tigervnc/network/FileDescriptor.java
parentef41e92001036029284c7bcfb6a9249cc2008a87 (diff)
downloadtigervnc-35022e07a90807f5f0686c146e49f469d4b3f2fd.tar.gz
tigervnc-35022e07a90807f5f0686c146e49f469d4b3f2fd.zip
Changes aimed at making the behavior of the java client more consistent with the binary client.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4871 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'java/com/tigervnc/network/FileDescriptor.java')
-rw-r--r--java/com/tigervnc/network/FileDescriptor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/com/tigervnc/network/FileDescriptor.java b/java/com/tigervnc/network/FileDescriptor.java
index 28ea96b8..12f6d586 100644
--- a/java/com/tigervnc/network/FileDescriptor.java
+++ b/java/com/tigervnc/network/FileDescriptor.java
@@ -25,7 +25,7 @@ public interface FileDescriptor {
public int read(byte[] buf, int bufPtr, int length) throws Exception;
public int write(byte[] buf, int bufPtr, int length) throws Exception;
- public int select(int interestOps, int timeout) throws Exception;
+ public int select(int interestOps, Integer timeout) throws Exception;
public void close() throws IOException;
}