diff options
Diffstat (limited to 'cores/arduino/WString.cpp')
-rw-r--r-- | cores/arduino/WString.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
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 { |