Skip to content

Commit 7bb1e5d

Browse files
committed
FirebaseArduino: remove pushString(char*) impl
1 parent 04829ad commit 7bb1e5d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/FirebaseArduino.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ String FirebaseArduino::pushString(const String& path, const String& value) {
4040
return push(path, json);
4141
}
4242

43-
String FirebaseArduino::pushString(const String& path, const char* value) {
44-
return push(path, value);
45-
}
46-
4743
String FirebaseArduino::push(const String& path, const JsonVariant& value) {
4844
String buf;
4945
value.printTo(buf);
@@ -69,10 +65,6 @@ void FirebaseArduino::setString(const String& path, const String& value) {
6965
set(path, json);
7066
}
7167

72-
void FirebaseArduino::setString(const String& path, const char* value) {
73-
set(path, value);
74-
}
75-
7668
void FirebaseArduino::set(const String& path, const JsonVariant& value) {
7769
String buf;
7870
value.printTo(buf);

0 commit comments

Comments
 (0)