summaryrefslogtreecommitdiff
path: root/vm/reference/gnu/java/nio/VMPipe.java
diff options
context:
space:
mode:
Diffstat (limited to 'vm/reference/gnu/java/nio/VMPipe.java')
-rw-r--r--vm/reference/gnu/java/nio/VMPipe.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/reference/gnu/java/nio/VMPipe.java b/vm/reference/gnu/java/nio/VMPipe.java
index e5257c1cf..a36970452 100644
--- a/vm/reference/gnu/java/nio/VMPipe.java
+++ b/vm/reference/gnu/java/nio/VMPipe.java
@@ -57,7 +57,7 @@ final class VMPipe
System.loadLibrary ("javanio");
}
}
-
+
/**
* Create a pipe, consisting of a readable VMChannel and a writable
* VMChannel. The readable channel is returned is the first element
@@ -75,6 +75,6 @@ final class VMPipe
pipe[1] = new VMChannel(fds[1]);
return pipe;
}
-
+
private static native int[] pipe0() throws IOException;
}