diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-26 00:56:36 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-26 00:56:36 +0000 |
commit | 09810bb315026828b74b2a00bb48e693e1e81f7f (patch) | |
tree | 450f2e21fb338705ee05bbdadf6523fb844920d3 /libjava/interpret.cc | |
parent | 5b531d6bcb6f441a52d7f7ec75ea61dfd4fbd835 (diff) | |
download | gcc-09810bb315026828b74b2a00bb48e693e1e81f7f.tar.gz |
* interpret.cc (run): Don't call println.
Don't include PrintStream.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31622 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r-- | libjava/interpret.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc index ecc5193fbeb..c278758150c 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -22,7 +22,6 @@ details. */ #include <java/lang/String.h> #include <java/lang/Integer.h> #include <java/lang/StringBuffer.h> -#include <java/io/PrintStream.h> #include <java/lang/Class.h> #include <java/lang/reflect/Modifier.h> #include <java/lang/ClassCastException.h> @@ -286,9 +285,6 @@ _Jv_InterpMethod::run (ffi_cif* cif, if ( find_exception (ex, inv) ) goto next_segment; - java::lang::System::out->println - (_Jv_NewStringUTF (self->name->data)); - return ex; } |