in src/org/jetbrains/plugins/ipnb/format/cells/IpnbEditableCell.java [38:48]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
IpnbEditableCell cell = (IpnbEditableCell)o;
if (!mySource.equals(cell.mySource)) return false;
if (!myMetadata.equals(cell.myMetadata)) return false;
return true;
}