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

if noprivate system property is set then the private qualifiers are not written out

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@14089 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 7654a821
No related branches found
No related tags found
No related merge requests found
......@@ -926,6 +926,9 @@ public class GFFStreamFeature extends SimpleDocumentFeature
if(lname)
continue;
if(this_qualifier.getName().equals("private") && System.getProperty("noprivate") != null)
continue;
// GSV :: see new getQualifierString signature
// this qualifier is NOT one of the reserved qualifiers
String this_qualifier_str = getQualifierString(this_qualifier, 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