This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / SocketJava.java
diff --git a/Robust/src/ClassLibrary/SocketJava.java b/Robust/src/ClassLibrary/SocketJava.java
deleted file mode 100644 (file)
index ab7327e..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-public class Socket {
-    /* Data pending flag */
-    /* File Descriptor */
-    int fd;
-    
-    Socket() {
-    }
-    
-    int setFD(int filed) {
-       fd=filed;
-    }
-
-    public int read(byte[] b) {
-       return nativeRead(b);
-    }
-    public void write(byte[] b) {
-       nativeWrite(b);
-    }
-
-    private native int nativeRead(byte[] b);
-    private native void nativeWrite(byte[] b);
-    private native void nativeClose();
-
-    public void close() {
-       nativeClose();
-    }
-}