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:
parent
4eb3f32c26
commit
02c3d2ec47
3 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue