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
No related branches found
No related tags found
No related merge requests found
...@@ -250,6 +250,9 @@ public class ArtemisUtils ...@@ -250,6 +250,9 @@ public class ArtemisUtils
FeatureCvTermProp this_fcp = (FeatureCvTermProp)featureCvTermProps.get(i); FeatureCvTermProp this_fcp = (FeatureCvTermProp)featureCvTermProps.get(i);
if(this_fcp.getValue().equals(fcp.getValue())) if(this_fcp.getValue().equals(fcp.getValue()))
return true; return true;
if(this_fcp.getValue().equals(GFFStreamFeature.decode(fcp.getValue())))
return true;
} }
return false; return false;
} }
......
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