Skip to content
Snippets Groups Projects
Commit 02c3d2ec authored by Andrew Haley's avatar Andrew Haley Committed by Andrew Haley
Browse files

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
parent 4eb3f32c
No related branches found
No related tags found
No related merge requests found
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.
......
......@@ -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);
}
/**
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment