Skip to content

Commit

Permalink
Add missing setter methods
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Dec 8, 2023
1 parent 1eba846 commit 82fbaf8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/genepi/riskscore/commands/FilterMetaCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,19 @@ private boolean accept(MetaFile.MetaScore score, String category, String populat
return true;
}

public void setMeta(String meta) {
this.meta = meta;
}

public void setCategory(String category) {
this.category = category;
}

public void setPopulation(String population) {
this.population = population;
}

public void setOut(String out) {
this.out = out;
}
}

0 comments on commit 82fbaf8

Please sign in to comment.