Skip to content

Commit dce33e5

Browse files
cleanup: Remove debugging print statements.
1 parent 96e4b96 commit dce33e5

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

scip_indexer/SCIPIndexer.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -478,9 +478,6 @@ class SCIPState {
478478

479479
void finalizeRefOnlySymbolInfos(const core::GlobalState &gs, core::FileRef file) {
480480
auto &potentialSyms = this->potentialRefOnlySymbols[file];
481-
fmt::print(stderr, "potentialSyms = {}\n",
482-
showSet(potentialSyms, [&](UntypedGenericSymbolRef sym) -> string { return sym.showRaw(gs); }));
483-
fmt::print(stderr, "relMap = {}\n", showRawRelationshipsMap(gs, this->relationshipsMap[file]));
484481

485482
for (auto symRef : potentialSyms) {
486483
auto valueOrError = this->saveSymbolString(gs, symRef, nullptr);
@@ -876,8 +873,6 @@ class CFGTraversal final {
876873
void traverse(const cfg::CFG &cfg) {
877874
this->aliasMap.populate(this->ctx, cfg, this->scipState.fieldResolver,
878875
this->scipState.relationshipsMap[ctx.file]);
879-
fmt::print(stderr, "log: [traverse] relationshipsMap = {}\n",
880-
showRawRelationshipsMap(this->ctx.state, this->scipState.relationshipsMap[ctx.file]));
881876
auto &gs = this->ctx.state;
882877
auto file = this->ctx.file;
883878
auto method = this->ctx.owner;

0 commit comments

Comments
 (0)