refactor: make compute private

This commit is contained in:
Anna 2020-12-29 10:31:41 -05:00
parent 49d84ee00e
commit 3316fc08d5
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
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);
}