* jni.cc (_Jv_JNI_RegisterNatives): Formatting fixlets.

From-SVN: r88255
This commit is contained in:
Tom Tromey 2004-09-28 21:55:26 +00:00 committed by Tom Tromey
parent ea77e73803
commit 252d78843b
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,7 @@
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.

View File

@ -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)
{