diff options
| author | Ronald Veldema <rveldema@cs.vu.nl> | 2002-03-12 11:36:21 +0000 |
|---|---|---|
| committer | Ronald Veldema <rveldema@cs.vu.nl> | 2002-03-12 11:36:21 +0000 |
| commit | 7ff7e6abd8b17e9d9c7551e8d76503fb18325daa (patch) | |
| tree | 37faea2330a248899efb9d9613d88810dad0ac98 /gnu/java/nio/PipeImpl.java | |
| parent | cc038371891900ee57b02542f26ecfa5b938f121 (diff) | |
| download | classpath-7ff7e6abd8b17e9d9c7551e8d76503fb18325daa.tar.gz | |
* Removes dependencies on manta; javax.swing,
gnu.java.nio and java.nio now compile with jikes;
Diffstat (limited to 'gnu/java/nio/PipeImpl.java')
| -rw-r--r-- | gnu/java/nio/PipeImpl.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/java/nio/PipeImpl.java b/gnu/java/nio/PipeImpl.java index e24254d2d..217e87f12 100644 --- a/gnu/java/nio/PipeImpl.java +++ b/gnu/java/nio/PipeImpl.java @@ -1,20 +1,20 @@ -package manta.runtime; +package gnu.java.nio; import java.nio.channels.*; class PipeImpl extends Pipe { - PipeImpl() + public PipeImpl() { } - java.nio.channels.Pipe.SinkChannel sink() + public java.nio.channels.Pipe.SinkChannel sink() { return null; } - java.nio.channels.Pipe.SourceChannel source() + public java.nio.channels.Pipe.SourceChannel source() { return null; } |
