Skip to content

Commit

Permalink
null check in shutdown thread
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Sep 30, 2017
1 parent d0fd4a0 commit 2b237bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/broad/igv/track/FeatureTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ protected void init(FeatureSource source, String path) {
@Override
public void dispose() {
super.dispose();
source.dispose();
if(source != null) source.dispose();
}

/**
Expand Down

0 comments on commit 2b237bd

Please sign in to comment.