From 8eea4576c433db9f6499081ab7fc789886d32025 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Tue, 27 Jul 2010 10:18:04 +0000 Subject: removed append() from String library --- cores/arduino/WString.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'cores/arduino/WString.cpp') diff --git a/cores/arduino/WString.cpp b/cores/arduino/WString.cpp index 57e4e81..d94d26b 100644 --- a/cores/arduino/WString.cpp +++ b/cores/arduino/WString.cpp @@ -410,15 +410,6 @@ String String::substring( unsigned int beginIndex, unsigned int endIndex ) const return outPut; } -const String & String::append( const String &str ) -{ - return (*this) += str; -} - -const String & String::append( const char ch) -{ - return (*this) += ch; -} int String::compareTo( const String &str ) const { -- cgit v1.2.3-18-g5258