Skip to content

Commit

Permalink
Remove commented-out code
Browse files Browse the repository at this point in the history
  • Loading branch information
rroelke committed Feb 14, 2025
1 parent 6d7ac9e commit c55eccf
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tiledb/sm/misc/comparators.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,18 +231,6 @@ class ResultTileCmpBase : public CellCmpBase {
} else if (a.tile_->frag_idx() > b.tile_->frag_idx()) {
return -1;
} else {
/*
const FragmentID id_a((*frag_md_)[a.tile_->frag_idx()]->fragment_uri());
const FragmentID id_b((*frag_md_)[b.tile_->frag_idx()]->fragment_uri());
if (id_a.name() < id_b.name()) {
return 1;
} else if (id_a.name() == id_b.name()) {
return 0;
} else {
return -1;
}
*/
return 0;
}
}
Expand Down

0 comments on commit c55eccf

Please sign in to comment.