This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: indentation fixlet
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 21 Sep 2004 16:19:37 -0600
- Subject: Patch: FYI: indentation fixlet
- Reply-to: tromey at redhat dot com
This fixes an indentation buglet in natMethod.cc.
I'm checking it in.
Tom
Index: libjava/ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA):
Indentation fix.
Index: libjava/java/lang/reflect/natMethod.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/reflect/natMethod.cc,v
retrieving revision 1.40
diff -u -r1.40 natMethod.cc
--- libjava/java/lang/reflect/natMethod.cc 12 Aug 2004 06:53:42 -0000 1.40
+++ libjava/java/lang/reflect/natMethod.cc 21 Sep 2004 22:16:53 -0000
@@ -485,7 +485,8 @@
if (iface == NULL)
ncode = vtable->get_method (meth->index);
else
- ncode = _Jv_LookupInterfaceMethodIdx (vtable->clas, iface, meth->index);
+ ncode = _Jv_LookupInterfaceMethodIdx (vtable->clas, iface,
+ meth->index);
}
else
{