Skip to content
Snippets Groups Projects
Commit 649dc49c authored by brinn's avatar brinn
Browse files

fix: Eclipse warning by implementing hashCode()

SVN: 13558
parent 7aedf73f
No related branches found
No related tags found
No related merge requests found
...@@ -69,4 +69,10 @@ public class GridCustomColumnInfo implements IsSerializable ...@@ -69,4 +69,10 @@ public class GridCustomColumnInfo implements IsSerializable
GridCustomColumnInfo that = (GridCustomColumnInfo) obj; GridCustomColumnInfo that = (GridCustomColumnInfo) obj;
return code.equals(that.code) && label.equals(that.label); return code.equals(that.code) && label.equals(that.label);
} }
@Override
public int hashCode()
{
return ((17 * 59) + code.hashCode()) * 59 + label.hashCode();
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment