Added newline at ed of file

This commit is contained in:
Benoit Blanchon
2014-10-23 23:45:36 +02:00
parent e85f27c0f3
commit 55b0eab3e6
39 changed files with 44 additions and 39 deletions

View File

@ -31,4 +31,4 @@ size_t Print::print(long value) {
size_t Print::println() { return write('\r') + write('\n'); }
#endif
#endif

View File

@ -38,4 +38,4 @@ inline size_t IndentedPrint::writeTabs() {
for (int i = 0; i < level * tabSize; i++) n += sink->write(' ');
return n;
}
}

View File

@ -21,4 +21,4 @@ void JsonWriter::writeBoolean(bool value) {
void JsonWriter::writeDouble(double value, int decimals) {
_length += _sink->print(value, decimals);
}
}

View File

@ -96,4 +96,4 @@ char *QuotedString::extractFrom(char *input, char **endPtr) {
*endPtr = readPtr;
return startPtr;
}
}

View File

@ -14,4 +14,4 @@ size_t StringBuilder::write(uint8_t c) {
buffer[length++] = c;
buffer[length] = 0;
return 1;
}
}

View File

@ -87,4 +87,4 @@ JsonArrayIterator JsonArray::begin() {
if (!_node) return end();
return JsonArrayIterator(_node->getContainerChild());
}
}

View File

@ -94,4 +94,4 @@ JsonNode *JsonBuffer::createStringNode(const char *value) {
if (node) node->setAsString(value);
return node;
}
}

View File

@ -69,4 +69,4 @@ JsonNode *JsonObject::getOrCreateNodeAt(const char *key) {
JsonObjectIterator JsonObject::begin() {
return JsonObjectIterator(_node->getContainerChild());
}
}

View File

@ -42,4 +42,4 @@ JsonValue::operator long() const { return _node ? _node->getAsInteger() : 0; }
JsonValue::operator JsonArray() const { return JsonArray(_node); }
JsonValue::operator JsonObject() const { return JsonObject(_node); }
JsonValue::operator JsonObject() const { return JsonObject(_node); }