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
This commit is contained in:
Andrew Haley 2010-07-30 10:49:36 +00:00 committed by Andrew Haley
parent 4eb3f32c26
commit 02c3d2ec47
3 changed files with 6 additions and 1 deletions

View file

@ -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-06-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* scripts/check_jni_methods.sh.in: Don't use diff -U.

View file

@ -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);
}
/**