Commit 252d7884 by Tom Tromey Committed by Tom Tromey

* jni.cc (_Jv_JNI_RegisterNatives): Formatting fixlets.

From-SVN: r88255
parent ea77e738
2004-09-28 Tom Tromey <tromey@redhat.com>
* jni.cc (_Jv_JNI_RegisterNatives): Formatting fixlets.
PR libgcj/17222:
* Makefile.am (libgcj.la): Restored.
* Makefile.in: Rebuilt.
......
......@@ -1883,8 +1883,7 @@ _Jv_JNI_RegisterNatives (JNIEnv *env, jclass klass,
if (! strcmp (self->name->chars (), methods[j].name)
&& ! strcmp (self->signature->chars (), methods[j].signature))
{
if (! (self->accflags
& java::lang::reflect::Modifier::NATIVE))
if (! (self->accflags & java::lang::reflect::Modifier::NATIVE))
break;
// Found a match that is native.
......@@ -1900,7 +1899,7 @@ _Jv_JNI_RegisterNatives (JNIEnv *env, jclass klass,
jstring m = JvNewStringUTF (methods[j].name);
try
{
env->ex =new java::lang::NoSuchMethodError (m);
env->ex = new java::lang::NoSuchMethodError (m);
}
catch (jthrowable t)
{
......
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