Skip to content

Commit b9bf361

Browse files
committed
exmdb_provider: remove tagsort analysis code
1 parent 0447186 commit b9bf361

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

exch/emsmdb/fastdownctx_object.cpp

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -205,17 +205,8 @@ static bool fxs_tagcmp_rcpt(const TAGGED_PROPVAL &a, const TAGGED_PROPVAL &b)
205205
static void fxs_propsort(FOLDER_CONTENT &fc)
206206
{
207207
auto &p = fc.proplist.ppropval;
208-
if (p != nullptr) {
209-
fprintf(stderr,"\e[1;31mtagcmp_fld before:{");
210-
for(auto i=0U;i<fc.proplist.count;++i)
211-
fprintf(stderr,"%xh,",p[i].proptag);
212-
fprintf(stderr,"}\n\e[0m");
208+
if (p != nullptr)
213209
std::sort(&p[0], &p[fc.proplist.count], fxs_tagcmp_fld);
214-
fprintf(stderr,"\e[1;35mtagcmp_fld after.:{");
215-
for(auto i=0U;i<fc.proplist.count;++i)
216-
fprintf(stderr,"%xh,",p[i].proptag);
217-
fprintf(stderr,"}\n\e[0m");
218-
}
219210
}
220211

221212
void fxs_propsort(MESSAGE_CONTENT &mc)

0 commit comments

Comments
 (0)