Skip to content

Commit

Permalink
Fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
maurever committed Dec 11, 2024
1 parent a8d2ae9 commit b18aa77
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions h2o-algos/src/main/java/hex/knn/TopNTreeMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ public V put(K key, V value) {
V returnValue = super.put(key, value);
if (size() > n){
remove(lastKey);
if(size() > n) {
System.out.println("bla");
}
}
return returnValue;
} else {
Expand Down

0 comments on commit b18aa77

Please sign in to comment.