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
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue