diff --git a/include/rapidjson/schema.h b/include/rapidjson/schema.h index 933e0eb..791aca5 100644 --- a/include/rapidjson/schema.h +++ b/include/rapidjson/schema.h @@ -1,7 +1,6 @@ // Tencent is pleased to support the open source community by making RapidJSON available-> // // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> -// Portions (C) Copyright IBM Corporation 2021 // // Licensed under the MIT License (the "License"); you may not use this file except // in compliance with the License-> You may obtain a copy of the License at diff --git a/include/rapidjson/uri.h b/include/rapidjson/uri.h index e72976d..98b0a15 100644 --- a/include/rapidjson/uri.h +++ b/include/rapidjson/uri.h @@ -110,7 +110,6 @@ public: } base_ = scheme_ + auth_ + path_ + query_; uri_ = base_ + frag_; - //std::cout << " Resolved uri: " << uri_ << std::endl; return *this; } @@ -196,7 +195,6 @@ private: } base_ = scheme_ + auth_ + path_ + query_; uri_ = base_ + frag_; - //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; } // Remove . and .. segments from a path @@ -209,7 +207,6 @@ private: std::size_t pos = 0; // Loop through each path segment while (pos != std::string::npos) { - //std::cout << "Temp: '" << temp.c_str() << "' Path: '" << path.c_str() << "'" << std::endl; pos = temp.find_first_of(slash); // Get next segment String seg = temp.substr(0, pos); @@ -233,7 +230,6 @@ private: // Move to next segment if not at end if (pos != std::string::npos) temp = temp.substr(pos + 1); } - //std::cout << "Final Temp: '" << temp.c_str() << "' Final Path: '" << path.c_str() << "'" << std::endl; } String uri_; // Full uri diff --git a/test/unittest/pointertest.cpp b/test/unittest/pointertest.cpp index 39c7ec6..a835af4 100644 --- a/test/unittest/pointertest.cpp +++ b/test/unittest/pointertest.cpp @@ -1,7 +1,6 @@ // Tencent is pleased to support the open source community by making RapidJSON available. // // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. -// Portions (C) Copyright IBM Corporation 2021 // // Licensed under the MIT License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at