diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-24 18:31:49 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-24 18:31:49 +0000 |
| commit | 046618852657be69f8a5a81a1be3cb802cd114ad (patch) | |
| tree | e2c23f578bed1d2bdc449cf28052a954c12e3d42 /libjava/classpath/tools/gnu | |
| parent | b2c48b2799d33cca7f44c437a4043ca4daa40c1f (diff) | |
| download | ppe42-gcc-046618852657be69f8a5a81a1be3cb802cd114ad.tar.gz ppe42-gcc-046618852657be69f8a5a81a1be3cb802cd114ad.zip | |
PR libgcj/32198:
* tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java
(compile): Reverse isAssignableFrom test.
* tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.class:
Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137084 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/tools/gnu')
| -rw-r--r-- | libjava/classpath/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/classpath/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java b/libjava/classpath/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java index e9b7bff0b7e..a889492f9b8 100644 --- a/libjava/classpath/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java +++ b/libjava/classpath/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java @@ -1,5 +1,5 @@ /* 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. @@ -292,7 +292,7 @@ public class SourceGiopRmicCompiler for (int j = 0; j < exc.length; j++) { - if (RemoteException.class.isAssignableFrom(exc[j])) + if (exc[j].isAssignableFrom(RemoteException.class)) { remEx = true; break; |

