interpret.cc (run): Don't call println.
authorTom Tromey <tromey@ferrule.cygnus.com>
Wed, 26 Jan 2000 00:56:36 +0000 (00:56 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 26 Jan 2000 00:56:36 +0000 (00:56 +0000)
* interpret.cc (run): Don't call println.
Don't include PrintStream.h.

From-SVN: r31622

libjava/ChangeLog
libjava/interpret.cc

index ffe657a123bed619200f5910f425021b3eb0c7fb..844b848b6476fbca037e5b6131a08124db74f00b 100644 (file)
@@ -1,3 +1,18 @@
+Tue Jan 25 08:51:16 2000  Tom Tromey  <tromey@ferrule.cygnus.com>
+
+       * interpret.cc (run): Don't call println.
+       Don't include PrintStream.h.
+
+       * gcj/field.h (struct _Jv_Field): Use "jshort" as type for
+       nameIndex.  Use "jint" as type for boffset.
+       * java/lang/Class.h (struct _Jv_Method): Made accflags a
+       _Jv_ushort.
+       (Class): Likewise.  Also changed type of method_count,
+       vtable_method_count, size_in_bytes, field_count,
+       static_field_count, interface_count.
+       * gcj/array.h (__JArray): Made `length' a const jsize, not an
+       int.
+
 2000-01-21  Tom Tromey  <tromey@cygnus.com>
 
        * java/lang/reflect/natConstructor.cc (newInstance): Use
index ecc5193fbeb1986ca7b718bde3ef4d9b863a9d9c..c278758150c94739bf33cfe9d10b3eccd7ba24e3 100644 (file)
@@ -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;
 }