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);

Change History (1)

comment:1 by zirkel, 14 years ago

Resolution: fixed
Status: newclosed

Made the change described above.

Note: See TracTickets for help on using tickets.