Skip to content

Commit

Permalink
Allow VariantEvaluator subclasses to provide custom name
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber authored and bbimber committed Jun 12, 2019
1 parent 52a1a2d commit c382256
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ public abstract class VariantEvaluator implements Comparable<VariantEvaluator> {
private VariantEval walker;
private final String simpleName;

protected VariantEvaluator(String simpleName) {
this.simpleName = simpleName;
}

protected VariantEvaluator() {
this.simpleName = getClass().getSimpleName();
}
Expand Down

0 comments on commit c382256

Please sign in to comment.