diff options
author | Tom Igoe <t.igoe@arduino.cc> | 2010-07-27 10:18:04 +0000 |
---|---|---|
committer | Tom Igoe <t.igoe@arduino.cc> | 2010-07-27 10:18:04 +0000 |
commit | 8eea4576c433db9f6499081ab7fc789886d32025 (patch) | |
tree | edb60a7c5a7c257f69bf4efa6e5e0b7dce6030e9 /cores/arduino/WString.cpp | |
parent | 58f5b67b71b8c7391d344e32aef2f6ef0a610ace (diff) |
removed append() from String library
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 { |