Remove duplicate code
This commit is contained in:
parent
fc1ca449d9
commit
3c163a8f15
1 changed files with 2 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
#include <StreamCommunicator.h>
|
||||
|
||||
StreamCommunicator::StreamCommunicator(Stream &s_out, __SIZE_TYPE__ bufferSize) :Communicator(bufferSize), stream(s_out)
|
||||
StreamCommunicator::StreamCommunicator(Stream &s_out, __SIZE_TYPE__ bufferSize) : Communicator(bufferSize), stream(s_out)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,7 @@ void StreamCommunicator::sendMessage(int *values, __SIZE_TYPE__ numberOfValues)
|
|||
{
|
||||
char message[calculateMessageOutSize(numberOfValues)];
|
||||
parseIDs(values, numberOfValues, message);
|
||||
stream.println(message);
|
||||
sendMessage(message);
|
||||
}
|
||||
|
||||
void StreamCommunicator::sendMessage(const char message[])
|
||||
|
@ -25,6 +25,3 @@ char *StreamCommunicator::receiveMessage()
|
|||
}
|
||||
return getBuffer();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Reference in a new issue