PR libgcj/32198:
* tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java
(compile): Reverse isAssignableFrom test.
* tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.class:
Rebuilt.
From-SVN: r137084
+2008-06-24 Tom Tromey <tromey@redhat.com>
+
+ PR libgcj/32198:
+ * tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java
+ (compile): Reverse isAssignableFrom test.
+ * tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.class:
+ Rebuilt.
+
2008-04-17 Tom Tromey <tromey@redhat.com>
PR libgcj/35950:
/* SourceGiopRmicCompiler -- Central GIOP-based RMI stub and tie compiler class.
- Copyright (C) 2006 Free Software Foundation
+ Copyright (C) 2006, 2008 Free Software Foundation
This file is part of GNU Classpath.
for (int j = 0; j < exc.length; j++)
{
- if (RemoteException.class.isAssignableFrom(exc[j]))
+ if (exc[j].isAssignableFrom(RemoteException.class))
{
remEx = true;
break;