aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/javax
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2010-07-30 10:49:36 +0000
committerAndrew Haley <aph@gcc.gnu.org>2010-07-30 10:49:36 +0000
commit02c3d2ec47d2d4d59ccc10db00bb11e9f6efa93d (patch)
tree69120baa2942c217cceb43b418d0204c81c08989 /libjava/classpath/javax
parent4eb3f32c268f5b3f769d8b17eae32e88b9934e35 (diff)
downloadgcc-02c3d2ec47d2d4d59ccc10db00bb11e9f6efa93d.zip
gcc-02c3d2ec47d2d4d59ccc10db00bb11e9f6efa93d.tar.gz
gcc-02c3d2ec47d2d4d59ccc10db00bb11e9f6efa93d.tar.bz2
JobStateReasons.java (add): Fix infinite recursion with call to super.
2010-07-30 Andrew Haley <aph@redhat.com> * javax/print/attribute/standard/JobStateReasons.java (add): Fix infinite recursion with call to super. From-SVN: r162708
Diffstat (limited to 'libjava/classpath/javax')
-rw-r--r--libjava/classpath/javax/print/attribute/standard/JobStateReasons.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/classpath/javax/print/attribute/standard/JobStateReasons.java b/libjava/classpath/javax/print/attribute/standard/JobStateReasons.java
index 503c06c..6c7a9f4 100644
--- a/libjava/classpath/javax/print/attribute/standard/JobStateReasons.java
+++ b/libjava/classpath/javax/print/attribute/standard/JobStateReasons.java
@@ -129,7 +129,7 @@ public final class JobStateReasons extends HashSet<JobStateReason>
if (o == null)
throw new NullPointerException("reason is null");
- return add(o);
+ return super.add(o);
}
/**