Skip to content

Commit

Permalink
Addressing @magicDGS comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonn-smith committed Jun 29, 2018
1 parent a5b3ba0 commit a870581
Showing 1 changed file with 3 additions and 5 deletions.
Expand Up @@ -10,18 +10,16 @@ public abstract class Walker extends GATKTool {

@Override
final protected ReferenceDataSource getReferenceDataSource() {
throw new GATKException("Should never access ReferenceDataSource in child classes of AssemblyRegionWalker.");
throw new GATKException("Should never access ReferenceDataSource in child classes of Walker.");
}

@Override
final protected ReadsDataSource getReadsDataSource() {
throw new GATKException("Should never access ReadsDataSource in child classes of AssemblyRegionWalker.");
throw new GATKException("Should never access ReadsDataSource in child classes of Walker.");
}

@Override
final protected FeatureManager getFeatureManager() {
throw new GATKException("Should never access FeatureManager in child classes of AssemblyRegionWalker.");
throw new GATKException("Should never access FeatureManager in child classes of Walker.");
}


}

0 comments on commit a870581

Please sign in to comment.