Skip to content

Commit 494447b

Browse files
author
Steve Hanson
committed
remove copyright & debug statements
1 parent 6e58a53 commit 494447b

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

include/rapidjson/schema.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Tencent is pleased to support the open source community by making RapidJSON available->
22
//
33
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved->
4-
// Portions (C) Copyright IBM Corporation 2021
54
//
65
// Licensed under the MIT License (the "License"); you may not use this file except
76
// in compliance with the License-> You may obtain a copy of the License at

include/rapidjson/uri.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ class GenericUri {
110110
}
111111
base_ = scheme_ + auth_ + path_ + query_;
112112
uri_ = base_ + frag_;
113-
//std::cout << " Resolved uri: " << uri_ << std::endl;
114113
return *this;
115114
}
116115

@@ -196,7 +195,6 @@ class GenericUri {
196195
}
197196
base_ = scheme_ + auth_ + path_ + query_;
198197
uri_ = base_ + frag_;
199-
//std::cout << " Parsed uri: " << "s: " << scheme_.c_str() << " a: " << auth_.c_str() << " p: " << path_.c_str() << " q: " << query_.c_str() << " f: " << frag_.c_str() << std::endl;
200198
}
201199

202200
// Remove . and .. segments from a path
@@ -209,7 +207,6 @@ class GenericUri {
209207
std::size_t pos = 0;
210208
// Loop through each path segment
211209
while (pos != std::string::npos) {
212-
//std::cout << "Temp: '" << temp.c_str() << "' Path: '" << path.c_str() << "'" << std::endl;
213210
pos = temp.find_first_of(slash);
214211
// Get next segment
215212
String seg = temp.substr(0, pos);
@@ -233,7 +230,6 @@ class GenericUri {
233230
// Move to next segment if not at end
234231
if (pos != std::string::npos) temp = temp.substr(pos + 1);
235232
}
236-
//std::cout << "Final Temp: '" << temp.c_str() << "' Final Path: '" << path.c_str() << "'" << std::endl;
237233
}
238234

239235
String uri_; // Full uri

test/unittest/pointertest.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Tencent is pleased to support the open source community by making RapidJSON available.
22
//
33
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip.
4-
// Portions (C) Copyright IBM Corporation 2021
54
//
65
// Licensed under the MIT License (the "License"); you may not use this file except
76
// in compliance with the License. You may obtain a copy of the License at

0 commit comments

Comments
 (0)