summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2010-07-30 10:58:19 +0000
committerAndrew Haley <aph@redhat.com>2010-07-30 10:58:19 +0000
commit98daf6c90b72e55a37927590f78be75b09eaf3a8 (patch)
tree47f7ebc95ac28906ef513be06db0b12d31a0548a
parent6fbc7a47004e01458fe678ad5f6134e39ca034be (diff)
downloadclasspath-98daf6c90b72e55a37927590f78be75b09eaf3a8.tar.gz
2010-07-30 Andrew Haley <aph@redhat.com>
* javax/print/attribute/standard/JobStateReasons.java (add): Fix infinite recursion with call to super.
-rw-r--r--ChangeLog5
-rw-r--r--javax/print/attribute/standard/JobStateReasons.java2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c45300d5a..e93d5e38f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-30 Andrew Haley <aph@redhat.com>
+
+ * javax/print/attribute/standard/JobStateReasons.java (add): Fix
+ infinite recursion with call to super.
+
2010-07-13 Jeroen Frijters <jeroen@frijters.net>
* java/util/zip/ZipFile.java:
diff --git a/javax/print/attribute/standard/JobStateReasons.java b/javax/print/attribute/standard/JobStateReasons.java
index 18c404eb7..af6eb5e90 100644
--- a/javax/print/attribute/standard/JobStateReasons.java
+++ b/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);
}
/**