Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdelest committed Dec 10, 2024
1 parent fa975de commit 74a22f8
Showing 1 changed file with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,19 @@ public int hashCode() {

@Override
public String toString(String field) {
return "KnnRescoreVectorQuery{" + "fieldName='" + fieldName + '\'' +
", floatTarget=" + floatTarget[0] + "..." +
", vectorSimilarityFunction=" + vectorSimilarityFunction +
", k=" + k +
", vectorQuery=" + innerQuery +
'}';
return "KnnRescoreVectorQuery{"
+ "fieldName='"
+ fieldName
+ '\''
+ ", floatTarget="
+ floatTarget[0]
+ "..."
+ ", vectorSimilarityFunction="
+ vectorSimilarityFunction
+ ", k="
+ k
+ ", vectorQuery="
+ innerQuery
+ '}';
}
}

0 comments on commit 74a22f8

Please sign in to comment.