Skip to content

Commit 772b2a3

Browse files
Remove debug print statements.
1 parent ff7db11 commit 772b2a3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

ramrecord.C

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,12 @@ Long64_t RAMIndex::GetRow(int refid, int pos)
130130
if (low == fIndex.end()) {
131131
return -1; // nothing found
132132
} else if (low == fIndex.begin()) {
133-
std::cout << "low=(" << low->first.first << "," << low->first.second << ")\n";
134133
return low->second;
135134
} else {
136135
if ((low->first.first == refid) && (low->first.second == pos)) {
137-
std::cout << "low=(" << low->first.first << "," << low->first.second << ")\n";
138136
return low->second;
139137
} else {
140138
--low;
141-
std::cout << "low=(" << low->first.first << "," << low->first.second << ")\n";
142139
return low->second;
143140
}
144141
}

0 commit comments

Comments
 (0)