style update

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2149 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
rpoplin 2009-11-24 20:56:31 +00:00
parent dffa46b380
commit 8b30279edc
1 changed files with 2 additions and 1 deletions

View File

@ -491,8 +491,9 @@ public class TableRecalibrationWalker extends ReadWalker<SAMRecord, SAMFileWrite
* @param output The SAMFileWriter that outputs the bam file
*/
public void onTraversalDone(SAMFileWriter output) {
if (output != null)
if ( output != null ) {
output.close();
}
super.onTraversalDone(output);
}
}