Skip to content

Commit

Permalink
Removing unnecessary getters.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzonthemtn committed Dec 3, 2024
1 parent 6720e5c commit 8727270
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,24 +73,12 @@ public double getDcg() {
return dcg;
}

public void setDcg(double dcg) {
this.dcg = dcg;
}

public double getNdcg() {
return ndcg;
}

public void setNdcg(double ndcg) {
this.ndcg = ndcg;
}

public double getPrecision() {
return precision;
}

public void setPrecision(double precision) {
this.precision = precision;
}

}

0 comments on commit 8727270

Please sign in to comment.