refactor: make compute private

This commit is contained in:
Anna 2020-12-29 10:31:41 -05:00
parent eba3830c81
commit d5e829f671
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace NoSoliciting.Interface {
this.Weights = weights;
}
public void Compute(Data data, Computed computed) {
private void Compute(Data data, Computed computed) {
data.Compute(computed, this.Weights);
}