This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[BC] Patch: FYI: indentation fix
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 04 Nov 2004 11:22:39 -0700
- Subject: [BC] Patch: FYI: indentation fix
- Reply-to: tromey at redhat dot com
I'm checking this in on the BC branch.
Trivial indentation fix.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/lang/natClass.cc (_Jv_getInterfaceMethod): Indentation
fix.
Index: java/lang/natClass.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/natClass.cc,v
retrieving revision 1.75.2.19
diff -u -r1.75.2.19 natClass.cc
--- java/lang/natClass.cc 4 Nov 2004 17:47:29 -0000 1.75.2.19
+++ java/lang/natClass.cc 4 Nov 2004 18:23:36 -0000
@@ -1202,8 +1202,8 @@
// and the index in INDEX.
bool
_Jv_getInterfaceMethod (jclass search_class, jclass &found_class, int &index,
- const _Jv_Utf8Const *utf_name,
- const _Jv_Utf8Const *utf_sig)
+ const _Jv_Utf8Const *utf_name,
+ const _Jv_Utf8Const *utf_sig)
{
for (jclass klass = search_class; klass; klass = klass->getSuperclass())
{