OSDN Git Service

* interpret.cc (run): Don't call println.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 Jan 2000 00:56:36 +0000 (00:56 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 Jan 2000 00:56:36 +0000 (00:56 +0000)
Don't include PrintStream.h.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31622 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/interpret.cc

index ffe657a..844b848 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 ecc5193..c278758 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;
 }