indenting clean up

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3816 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2010-07-17 22:28:28 +00:00
parent 9207c58b8f
commit d40299840c
1 changed files with 2 additions and 2 deletions

View File

@ -127,9 +127,9 @@ public class VCF4Codec implements FeatureCodec, NameAwareCodec {
if (hl.getClass() == VCFFilterHeaderLine.class)
this.filterFields.add(((VCFFilterHeaderLine)hl).getName());
if (hl.getClass() == VCFFormatHeaderLine.class)
this.formatFields.put(((VCFFormatHeaderLine)hl).getName(),((VCFFormatHeaderLine)hl).getType());
this.formatFields.put(((VCFFormatHeaderLine)hl).getName(),((VCFFormatHeaderLine)hl).getType());
if (hl.getClass() == VCFInfoHeaderLine.class)
this.infoFields.put(((VCFInfoHeaderLine)hl).getName(),((VCFInfoHeaderLine)hl).getType());
this.infoFields.put(((VCFInfoHeaderLine)hl).getName(),((VCFInfoHeaderLine)hl).getType());
}
// sort the lists so we can binary search them later on
Collections.sort(filterFields);