Commit 8de7c9a0 by Tom Tromey Committed by Tom Tromey

interpret.cc (run): Don't call println.

	* interpret.cc (run): Don't call println.
	Don't include PrintStream.h.

From-SVN: r31622
parent 0507a9b1
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
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment