Skip to content
Snippets Groups Projects
Commit 21984110 authored by J. M. Bailey's avatar J. M. Bailey
Browse files

Fix equals method

parent 2eebd012
No related branches found
No related tags found
No related merge requests found
......@@ -260,7 +260,7 @@ public class VariableDatum extends Object implements Serializable
if (!(variableDatumID == rhs.variableDatumID))
ivarsEqual = false;
if (!(variableDatumLength == rhs.variableDatumLength))
if (!(variableDatumLength.equals(rhs.variableDatumLength)))
ivarsEqual = false;
for (int idx = 0; idx < 0; idx++) {
if (!(variableDatumValue[idx] == rhs.variableDatumValue[idx]))
......
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