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

ignore history qualifiers if the system property nohistory is set

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@14137 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 4b2dd0d5
Branches
Tags
No related merge requests found
...@@ -926,7 +926,8 @@ public class GFFStreamFeature extends SimpleDocumentFeature ...@@ -926,7 +926,8 @@ public class GFFStreamFeature extends SimpleDocumentFeature
if(lname) if(lname)
continue; continue;
if(this_qualifier.getName().equals("private") && System.getProperty("noprivate") != null) if( (this_qualifier.getName().equals("private") && System.getProperty("noprivate") != null) ||
(this_qualifier.getName().equals("history") && System.getProperty("nohistory") != null) )
continue; continue;
// GSV :: see new getQualifierString signature // GSV :: see new getQualifierString signature
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment