From 5e5f060fc0a16ee3c19a64bea2b47407438801b1 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Sat, 7 Feb 2015 16:05:48 +0100 Subject: [PATCH] Updated copyright for 2015 --- include/ArduinoJson/Arduino/Print.hpp | 2 +- include/ArduinoJson/DynamicJsonBuffer.hpp | 2 +- include/ArduinoJson/Internals/IndentedPrint.hpp | 2 +- include/ArduinoJson/Internals/JsonBufferAllocated.hpp | 5 ++--- include/ArduinoJson/Internals/JsonParser.hpp | 2 +- include/ArduinoJson/Internals/JsonPrintable.hpp | 2 +- include/ArduinoJson/Internals/JsonVariantContent.hpp | 2 +- include/ArduinoJson/Internals/JsonVariantType.hpp | 2 +- include/ArduinoJson/Internals/JsonWriter.hpp | 2 +- include/ArduinoJson/Internals/List.hpp | 2 +- include/ArduinoJson/Internals/ListConstIterator.hpp | 2 +- include/ArduinoJson/Internals/ListIterator.hpp | 2 +- include/ArduinoJson/Internals/ListNode.hpp | 2 +- include/ArduinoJson/Internals/Prettyfier.hpp | 2 +- include/ArduinoJson/Internals/QuotedString.hpp | 2 +- include/ArduinoJson/Internals/ReferenceType.hpp | 2 +- include/ArduinoJson/Internals/StringBuilder.hpp | 2 +- include/ArduinoJson/JsonArray.hpp | 2 +- include/ArduinoJson/JsonBuffer.hpp | 2 +- include/ArduinoJson/JsonObject.hpp | 2 +- include/ArduinoJson/JsonPair.hpp | 2 +- include/ArduinoJson/JsonVariant.hpp | 2 +- include/ArduinoJson/StaticJsonBuffer.hpp | 2 +- src/Arduino/Print.cpp | 2 +- src/Internals/IndentedPrint.cpp | 2 +- src/Internals/JsonParser.cpp | 2 +- src/Internals/List.cpp | 2 +- src/Internals/Prettyfier.cpp | 2 +- src/Internals/QuotedString.cpp | 2 +- src/Internals/StringBuilder.cpp | 2 +- src/JsonArray.cpp | 2 +- src/JsonBuffer.cpp | 2 +- src/JsonObject.cpp | 2 +- src/JsonVariant.cpp | 2 +- test/DynamicJsonBuffer_Array_Tests.cpp | 2 +- test/DynamicJsonBuffer_Basic_Tests.cpp | 8 ++++---- test/DynamicJsonBuffer_Object_Tests.cpp | 2 +- test/GbathreeBug.cpp | 2 +- test/IntegrationTests.cpp | 2 +- test/Issue10.cpp | 2 +- test/Issue34.cpp | 2 +- test/JsonArray_Container_Tests.cpp | 2 +- test/JsonArray_Invalid_Tests.cpp | 2 +- test/JsonArray_Iterator_Tests.cpp | 2 +- test/JsonArray_PrettyPrintTo_Tests.cpp | 2 +- test/JsonArray_PrintTo_Tests.cpp | 2 +- test/JsonObject_Container_Tests.cpp | 2 +- test/JsonObject_Invalid_Tests.cpp | 2 +- test/JsonObject_Iterator_Tests.cpp | 2 +- test/JsonObject_PrettyPrintTo_Tests.cpp | 2 +- test/JsonObject_PrintTo_Tests.cpp | 2 +- test/JsonParser_Array_Tests.cpp | 2 +- test/JsonParser_Nested_Tests.cpp | 2 +- test/JsonParser_NestingLimit_Tests.cpp | 2 +- test/JsonParser_Object_Tests.cpp | 2 +- test/JsonVariant_Comparison_Tests.cpp | 2 +- test/JsonVariant_Copy_Tests.cpp | 2 +- test/JsonVariant_Invalid_Tests.cpp | 2 +- test/JsonVariant_PrintTo_Tests.cpp | 2 +- test/JsonVariant_Storage_Tests.cpp | 2 +- test/JsonVariant_Subscript_Tests.cpp | 2 +- test/JsonVariant_Undefined_Tests.cpp | 2 +- test/Printers.cpp | 2 +- test/Printers.hpp | 2 +- test/QuotedString_ExtractFrom_Tests.cpp | 2 +- test/QuotedString_PrintTo_Tests.cpp | 2 +- test/StaticJsonBuffer_Array_Tests.cpp | 2 +- test/StaticJsonBuffer_Basic_Tests.cpp | 2 +- test/StaticJsonBuffer_Object_Tests.cpp | 2 +- test/StringBuilderTests.cpp | 2 +- 70 files changed, 74 insertions(+), 75 deletions(-) diff --git a/include/ArduinoJson/Arduino/Print.hpp b/include/ArduinoJson/Arduino/Print.hpp index 58f66aa2..3e933cf8 100644 --- a/include/ArduinoJson/Arduino/Print.hpp +++ b/include/ArduinoJson/Arduino/Print.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/DynamicJsonBuffer.hpp b/include/ArduinoJson/DynamicJsonBuffer.hpp index 659666e4..ef0f7c27 100644 --- a/include/ArduinoJson/DynamicJsonBuffer.hpp +++ b/include/ArduinoJson/DynamicJsonBuffer.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/IndentedPrint.hpp b/include/ArduinoJson/Internals/IndentedPrint.hpp index f9aa358d..038eb9e1 100644 --- a/include/ArduinoJson/Internals/IndentedPrint.hpp +++ b/include/ArduinoJson/Internals/IndentedPrint.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/JsonBufferAllocated.hpp b/include/ArduinoJson/Internals/JsonBufferAllocated.hpp index 37eec8c0..148a99ac 100644 --- a/include/ArduinoJson/Internals/JsonBufferAllocated.hpp +++ b/include/ArduinoJson/Internals/JsonBufferAllocated.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library @@ -17,8 +17,7 @@ class JsonBufferAllocated { return jsonBuffer->alloc(n); } - void operator delete(void*, JsonBuffer *) throw() { - } + void operator delete(void *, JsonBuffer *) throw() {} }; } } diff --git a/include/ArduinoJson/Internals/JsonParser.hpp b/include/ArduinoJson/Internals/JsonParser.hpp index 2fa98608..1433de1a 100644 --- a/include/ArduinoJson/Internals/JsonParser.hpp +++ b/include/ArduinoJson/Internals/JsonParser.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/JsonPrintable.hpp b/include/ArduinoJson/Internals/JsonPrintable.hpp index 3e972dc6..f5c52b06 100644 --- a/include/ArduinoJson/Internals/JsonPrintable.hpp +++ b/include/ArduinoJson/Internals/JsonPrintable.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/JsonVariantContent.hpp b/include/ArduinoJson/Internals/JsonVariantContent.hpp index 3b0e6c6d..0f499ee0 100644 --- a/include/ArduinoJson/Internals/JsonVariantContent.hpp +++ b/include/ArduinoJson/Internals/JsonVariantContent.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/JsonVariantType.hpp b/include/ArduinoJson/Internals/JsonVariantType.hpp index cb666ac3..d9f177a6 100644 --- a/include/ArduinoJson/Internals/JsonVariantType.hpp +++ b/include/ArduinoJson/Internals/JsonVariantType.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/JsonWriter.hpp b/include/ArduinoJson/Internals/JsonWriter.hpp index 63f79445..427cc848 100644 --- a/include/ArduinoJson/Internals/JsonWriter.hpp +++ b/include/ArduinoJson/Internals/JsonWriter.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/List.hpp b/include/ArduinoJson/Internals/List.hpp index 8e64417c..760ca4f2 100644 --- a/include/ArduinoJson/Internals/List.hpp +++ b/include/ArduinoJson/Internals/List.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/ListConstIterator.hpp b/include/ArduinoJson/Internals/ListConstIterator.hpp index f4b86365..b04ccc8b 100644 --- a/include/ArduinoJson/Internals/ListConstIterator.hpp +++ b/include/ArduinoJson/Internals/ListConstIterator.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/ListIterator.hpp b/include/ArduinoJson/Internals/ListIterator.hpp index 5615b737..65eae5ed 100644 --- a/include/ArduinoJson/Internals/ListIterator.hpp +++ b/include/ArduinoJson/Internals/ListIterator.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/ListNode.hpp b/include/ArduinoJson/Internals/ListNode.hpp index 43c99f5f..902c7973 100644 --- a/include/ArduinoJson/Internals/ListNode.hpp +++ b/include/ArduinoJson/Internals/ListNode.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/Prettyfier.hpp b/include/ArduinoJson/Internals/Prettyfier.hpp index 7203e23b..edd90920 100644 --- a/include/ArduinoJson/Internals/Prettyfier.hpp +++ b/include/ArduinoJson/Internals/Prettyfier.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/QuotedString.hpp b/include/ArduinoJson/Internals/QuotedString.hpp index 9fb21a21..091de936 100644 --- a/include/ArduinoJson/Internals/QuotedString.hpp +++ b/include/ArduinoJson/Internals/QuotedString.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/ReferenceType.hpp b/include/ArduinoJson/Internals/ReferenceType.hpp index ee07fd2f..1996b383 100644 --- a/include/ArduinoJson/Internals/ReferenceType.hpp +++ b/include/ArduinoJson/Internals/ReferenceType.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/Internals/StringBuilder.hpp b/include/ArduinoJson/Internals/StringBuilder.hpp index 0243239b..9c56794d 100644 --- a/include/ArduinoJson/Internals/StringBuilder.hpp +++ b/include/ArduinoJson/Internals/StringBuilder.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/JsonArray.hpp b/include/ArduinoJson/JsonArray.hpp index 62fa2188..6dcc8b1a 100644 --- a/include/ArduinoJson/JsonArray.hpp +++ b/include/ArduinoJson/JsonArray.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/JsonBuffer.hpp b/include/ArduinoJson/JsonBuffer.hpp index b0b5967e..aab79800 100644 --- a/include/ArduinoJson/JsonBuffer.hpp +++ b/include/ArduinoJson/JsonBuffer.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/JsonObject.hpp b/include/ArduinoJson/JsonObject.hpp index bc210df0..41081d03 100644 --- a/include/ArduinoJson/JsonObject.hpp +++ b/include/ArduinoJson/JsonObject.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/JsonPair.hpp b/include/ArduinoJson/JsonPair.hpp index 8da3f54b..876a66cc 100644 --- a/include/ArduinoJson/JsonPair.hpp +++ b/include/ArduinoJson/JsonPair.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/JsonVariant.hpp b/include/ArduinoJson/JsonVariant.hpp index 362da4e2..6e0de5fc 100644 --- a/include/ArduinoJson/JsonVariant.hpp +++ b/include/ArduinoJson/JsonVariant.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/include/ArduinoJson/StaticJsonBuffer.hpp b/include/ArduinoJson/StaticJsonBuffer.hpp index 28123080..e91f3307 100644 --- a/include/ArduinoJson/StaticJsonBuffer.hpp +++ b/include/ArduinoJson/StaticJsonBuffer.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Arduino/Print.cpp b/src/Arduino/Print.cpp index 72cab452..0812228d 100644 --- a/src/Arduino/Print.cpp +++ b/src/Arduino/Print.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Internals/IndentedPrint.cpp b/src/Internals/IndentedPrint.cpp index 438c9d4a..f229dfc8 100644 --- a/src/Internals/IndentedPrint.cpp +++ b/src/Internals/IndentedPrint.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Internals/JsonParser.cpp b/src/Internals/JsonParser.cpp index 6e42bc45..ff60cff0 100644 --- a/src/Internals/JsonParser.cpp +++ b/src/Internals/JsonParser.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Internals/List.cpp b/src/Internals/List.cpp index 09a41a4c..c75a030a 100644 --- a/src/Internals/List.cpp +++ b/src/Internals/List.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Internals/Prettyfier.cpp b/src/Internals/Prettyfier.cpp index 6636bbc8..615c8ca3 100644 --- a/src/Internals/Prettyfier.cpp +++ b/src/Internals/Prettyfier.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Internals/QuotedString.cpp b/src/Internals/QuotedString.cpp index bec186a8..3a90defc 100644 --- a/src/Internals/QuotedString.cpp +++ b/src/Internals/QuotedString.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/Internals/StringBuilder.cpp b/src/Internals/StringBuilder.cpp index c3ffb4cb..440e4a50 100644 --- a/src/Internals/StringBuilder.cpp +++ b/src/Internals/StringBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/JsonArray.cpp b/src/JsonArray.cpp index f5fe5f16..bd4ff33f 100644 --- a/src/JsonArray.cpp +++ b/src/JsonArray.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/JsonBuffer.cpp b/src/JsonBuffer.cpp index 52631707..d47fac85 100644 --- a/src/JsonBuffer.cpp +++ b/src/JsonBuffer.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/JsonObject.cpp b/src/JsonObject.cpp index 71578d77..62ebf9c1 100644 --- a/src/JsonObject.cpp +++ b/src/JsonObject.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/src/JsonVariant.cpp b/src/JsonVariant.cpp index c08ae54a..3930a551 100644 --- a/src/JsonVariant.cpp +++ b/src/JsonVariant.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/DynamicJsonBuffer_Array_Tests.cpp b/test/DynamicJsonBuffer_Array_Tests.cpp index 7c620475..28c848d4 100644 --- a/test/DynamicJsonBuffer_Array_Tests.cpp +++ b/test/DynamicJsonBuffer_Array_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/DynamicJsonBuffer_Basic_Tests.cpp b/test/DynamicJsonBuffer_Basic_Tests.cpp index 13b97ad8..7e3b7919 100644 --- a/test/DynamicJsonBuffer_Basic_Tests.cpp +++ b/test/DynamicJsonBuffer_Basic_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library @@ -46,14 +46,14 @@ TEST_F(DynamicJsonBuffer_Basic_Tests, BlockCountChangesWhenFull) { TEST_F(DynamicJsonBuffer_Basic_Tests, CanAllocLessThanBlockCapacity) { void* p1 = buffer.alloc(DynamicJsonBuffer::BLOCK_CAPACITY); - ASSERT_FALSE(p1==NULL); + ASSERT_FALSE(p1 == NULL); void* p2 = buffer.alloc(DynamicJsonBuffer::BLOCK_CAPACITY); - ASSERT_FALSE(p2==NULL); + ASSERT_FALSE(p2 == NULL); } TEST_F(DynamicJsonBuffer_Basic_Tests, CantAllocMoreThanBlockCapacity) { void* p = buffer.alloc(DynamicJsonBuffer::BLOCK_CAPACITY + 1); - ASSERT_TRUE(p==NULL); + ASSERT_TRUE(p == NULL); } TEST_F(DynamicJsonBuffer_Basic_Tests, ReturnDifferentPointer) { diff --git a/test/DynamicJsonBuffer_Object_Tests.cpp b/test/DynamicJsonBuffer_Object_Tests.cpp index a9dd8cb9..cb1e0ace 100644 --- a/test/DynamicJsonBuffer_Object_Tests.cpp +++ b/test/DynamicJsonBuffer_Object_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/GbathreeBug.cpp b/test/GbathreeBug.cpp index b1b4165b..414afc04 100644 --- a/test/GbathreeBug.cpp +++ b/test/GbathreeBug.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/IntegrationTests.cpp b/test/IntegrationTests.cpp index 582abc01..db36c025 100644 --- a/test/IntegrationTests.cpp +++ b/test/IntegrationTests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/Issue10.cpp b/test/Issue10.cpp index a8811aeb..883a187d 100644 --- a/test/Issue10.cpp +++ b/test/Issue10.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/Issue34.cpp b/test/Issue34.cpp index 5406f234..9eef03e2 100644 --- a/test/Issue34.cpp +++ b/test/Issue34.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonArray_Container_Tests.cpp b/test/JsonArray_Container_Tests.cpp index 52c36c93..283e453d 100644 --- a/test/JsonArray_Container_Tests.cpp +++ b/test/JsonArray_Container_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonArray_Invalid_Tests.cpp b/test/JsonArray_Invalid_Tests.cpp index a07f74cc..47b86c82 100644 --- a/test/JsonArray_Invalid_Tests.cpp +++ b/test/JsonArray_Invalid_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonArray_Iterator_Tests.cpp b/test/JsonArray_Iterator_Tests.cpp index 8efee505..ac7c9324 100644 --- a/test/JsonArray_Iterator_Tests.cpp +++ b/test/JsonArray_Iterator_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonArray_PrettyPrintTo_Tests.cpp b/test/JsonArray_PrettyPrintTo_Tests.cpp index 1f4049fd..6446f172 100644 --- a/test/JsonArray_PrettyPrintTo_Tests.cpp +++ b/test/JsonArray_PrettyPrintTo_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonArray_PrintTo_Tests.cpp b/test/JsonArray_PrintTo_Tests.cpp index 946d5ab6..54661918 100644 --- a/test/JsonArray_PrintTo_Tests.cpp +++ b/test/JsonArray_PrintTo_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonObject_Container_Tests.cpp b/test/JsonObject_Container_Tests.cpp index 07ae449a..6e6ea796 100644 --- a/test/JsonObject_Container_Tests.cpp +++ b/test/JsonObject_Container_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonObject_Invalid_Tests.cpp b/test/JsonObject_Invalid_Tests.cpp index 1a5a0afe..1cb1a305 100644 --- a/test/JsonObject_Invalid_Tests.cpp +++ b/test/JsonObject_Invalid_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonObject_Iterator_Tests.cpp b/test/JsonObject_Iterator_Tests.cpp index a50d3fbe..d68af9bc 100644 --- a/test/JsonObject_Iterator_Tests.cpp +++ b/test/JsonObject_Iterator_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonObject_PrettyPrintTo_Tests.cpp b/test/JsonObject_PrettyPrintTo_Tests.cpp index ff27d7b1..7b880150 100644 --- a/test/JsonObject_PrettyPrintTo_Tests.cpp +++ b/test/JsonObject_PrettyPrintTo_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonObject_PrintTo_Tests.cpp b/test/JsonObject_PrintTo_Tests.cpp index f8ce2fd0..8466732f 100644 --- a/test/JsonObject_PrintTo_Tests.cpp +++ b/test/JsonObject_PrintTo_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonParser_Array_Tests.cpp b/test/JsonParser_Array_Tests.cpp index 12049ec7..d3eb2f6d 100644 --- a/test/JsonParser_Array_Tests.cpp +++ b/test/JsonParser_Array_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonParser_Nested_Tests.cpp b/test/JsonParser_Nested_Tests.cpp index 95f2d13e..cf239e01 100644 --- a/test/JsonParser_Nested_Tests.cpp +++ b/test/JsonParser_Nested_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonParser_NestingLimit_Tests.cpp b/test/JsonParser_NestingLimit_Tests.cpp index 943d8bd1..7031c017 100644 --- a/test/JsonParser_NestingLimit_Tests.cpp +++ b/test/JsonParser_NestingLimit_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonParser_Object_Tests.cpp b/test/JsonParser_Object_Tests.cpp index ef32f92c..0f183667 100644 --- a/test/JsonParser_Object_Tests.cpp +++ b/test/JsonParser_Object_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_Comparison_Tests.cpp b/test/JsonVariant_Comparison_Tests.cpp index cc68e6e5..35687d85 100644 --- a/test/JsonVariant_Comparison_Tests.cpp +++ b/test/JsonVariant_Comparison_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_Copy_Tests.cpp b/test/JsonVariant_Copy_Tests.cpp index e4460590..b49828c5 100644 --- a/test/JsonVariant_Copy_Tests.cpp +++ b/test/JsonVariant_Copy_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_Invalid_Tests.cpp b/test/JsonVariant_Invalid_Tests.cpp index b490fd1f..f18dae92 100644 --- a/test/JsonVariant_Invalid_Tests.cpp +++ b/test/JsonVariant_Invalid_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_PrintTo_Tests.cpp b/test/JsonVariant_PrintTo_Tests.cpp index 1b702a3d..cd0bc5e8 100644 --- a/test/JsonVariant_PrintTo_Tests.cpp +++ b/test/JsonVariant_PrintTo_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_Storage_Tests.cpp b/test/JsonVariant_Storage_Tests.cpp index 128c324b..eba73b71 100644 --- a/test/JsonVariant_Storage_Tests.cpp +++ b/test/JsonVariant_Storage_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_Subscript_Tests.cpp b/test/JsonVariant_Subscript_Tests.cpp index 88dbd9fe..46ab4998 100644 --- a/test/JsonVariant_Subscript_Tests.cpp +++ b/test/JsonVariant_Subscript_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/JsonVariant_Undefined_Tests.cpp b/test/JsonVariant_Undefined_Tests.cpp index d2538034..25b203ad 100644 --- a/test/JsonVariant_Undefined_Tests.cpp +++ b/test/JsonVariant_Undefined_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/Printers.cpp b/test/Printers.cpp index caa3766d..e32aca29 100644 --- a/test/Printers.cpp +++ b/test/Printers.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/Printers.hpp b/test/Printers.hpp index 80f54a6a..b2cf3107 100644 --- a/test/Printers.hpp +++ b/test/Printers.hpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/QuotedString_ExtractFrom_Tests.cpp b/test/QuotedString_ExtractFrom_Tests.cpp index cf9661c0..2f6747f3 100644 --- a/test/QuotedString_ExtractFrom_Tests.cpp +++ b/test/QuotedString_ExtractFrom_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/QuotedString_PrintTo_Tests.cpp b/test/QuotedString_PrintTo_Tests.cpp index 0338faac..4ee03474 100644 --- a/test/QuotedString_PrintTo_Tests.cpp +++ b/test/QuotedString_PrintTo_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/StaticJsonBuffer_Array_Tests.cpp b/test/StaticJsonBuffer_Array_Tests.cpp index c6055dae..9d38a33f 100644 --- a/test/StaticJsonBuffer_Array_Tests.cpp +++ b/test/StaticJsonBuffer_Array_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/StaticJsonBuffer_Basic_Tests.cpp b/test/StaticJsonBuffer_Basic_Tests.cpp index ee53e12e..da1bb19a 100644 --- a/test/StaticJsonBuffer_Basic_Tests.cpp +++ b/test/StaticJsonBuffer_Basic_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/StaticJsonBuffer_Object_Tests.cpp b/test/StaticJsonBuffer_Object_Tests.cpp index b8e1da9c..91e528cd 100644 --- a/test/StaticJsonBuffer_Object_Tests.cpp +++ b/test/StaticJsonBuffer_Object_Tests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library diff --git a/test/StringBuilderTests.cpp b/test/StringBuilderTests.cpp index 6531713d..ebd28342 100644 --- a/test/StringBuilderTests.cpp +++ b/test/StringBuilderTests.cpp @@ -1,4 +1,4 @@ -// Copyright Benoit Blanchon 2014 +// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library