aboutsummaryrefslogtreecommitdiffstats
path: root/java/com/tigervnc/network/FileDescriptor.java
diff options
context:
space:
mode:
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;
}