Fixed bug with BlockFlow.equals

Added second constructor for collections
This commit is contained in:
durron597
2010-12-31 09:07:39 -05:00
parent e97ded9d7a
commit 034b482a8d

View File

@@ -74,7 +74,7 @@ public class BlockFlowEvent extends BlockEvent {
}
public boolean equals(BlockFlow flow) {
return flow.flowDirection.equals(flow);
return flowDirection.equals(flow.flowDirection);
}
@Override