Skip to content
Snippets Groups Projects
Commit b0bd6cdf authored by tcarver's avatar tcarver
Browse files

decode feature_cvtermprop values when checking against the database

parent 28dfe265
Branches
Tags
No related merge requests found
......@@ -250,6 +250,9 @@ public class ArtemisUtils
FeatureCvTermProp this_fcp = (FeatureCvTermProp)featureCvTermProps.get(i);
if(this_fcp.getValue().equals(fcp.getValue()))
return true;
if(this_fcp.getValue().equals(GFFStreamFeature.decode(fcp.getValue())))
return true;
}
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment