Skip to content

Commit 40152be

Browse files
committed
code style
1 parent e2669c1 commit 40152be

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/SocketIOclient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ bool SocketIOclient::send(socketIOmessageType_t type, String & payload) {
9696
* @return true if ok
9797
*/
9898
bool SocketIOclient::sendEVENT(uint8_t * payload, size_t length, bool headerToPayload) {
99-
return send(sIOtype_EVENT, payload, length, headerToPayload);
99+
return send(sIOtype_EVENT, payload, length, headerToPayload);
100100
}
101101

102102
bool SocketIOclient::sendEVENT(const uint8_t * payload, size_t length) {

src/SocketIOclient.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ class SocketIOclient : protected WebSocketsClient {
5959
bool sendEVENT(const char * payload, size_t length = 0);
6060
bool sendEVENT(String & payload);
6161

62-
6362
bool send(socketIOmessageType_t type, uint8_t * payload, size_t length = 0, bool headerToPayload = false);
6463
bool send(socketIOmessageType_t type, const uint8_t * payload, size_t length = 0);
6564
bool send(socketIOmessageType_t type, char * payload, size_t length = 0, bool headerToPayload = false);

0 commit comments

Comments
 (0)