Skip to content
Snippets Groups Projects
Commit d66241a4 authored by tjc's avatar tjc
Browse files

trim any white space

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@15773 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 89ce08d5
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ public class FeatureContigPredicate implements FeaturePredicate
public boolean testPredicate(Feature feature)
{
if(feature.getIDString().equals(contigName))
if(feature.getIDString().trim().equals(contigName))
return true;
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