Opened 14 years ago
Closed 14 years ago
#333 closed defect (fixed)
Bug in MorphicSet.contains()?
| Reported by: | zirkel | Owned by: | Stephen Siegel |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | morph | Version: | |
| Keywords: | Cc: |
Description
MorphicSet implements the following method:
public boolean contains(T element) {
return elements.contains(elements);
}
The return statement should probably be:
return elements.contains(element);
Note:
See TracTickets
for help on using tickets.

Made the change described above.