[cli] remove undefined method decelerations in Interpreter (#6691)

This commit is contained in:
Abtin Keshavarzian
2021-05-31 21:52:39 -07:00
committed by GitHub
parent f0f536dab3
commit 42e7427156
-16
View File
@@ -149,19 +149,6 @@ public:
*/
void ProcessLine(char *aBuf);
/**
* This method delivers raw characters to the client.
*
* @param[in] aBuf A pointer to a buffer.
* @param[in] aBufLength Number of bytes in the buffer.
*
* @returns The number of bytes placed in the output queue.
*
* @retval -1 Driver is broken.
*
*/
int Output(const char *aBuf, uint16_t aBufLength);
/**
* This method writes a number of bytes to the CLI console as a hex string.
*
@@ -471,9 +458,6 @@ private:
otError ProcessNetworkDataRoute(void);
otError ProcessNetworkDataService(void);
void OutputPrefix(const otMeshLocalPrefix &aPrefix);
void OutputPrefix(const otBorderRouterConfig &aConfig);
void OutputRoute(const otExternalRouteConfig &aConfig);
void OutputService(const otServiceConfig &aConfig);
otError ProcessNetstat(uint8_t aArgsLength, Arg aArgs[]);
int OutputSocketAddress(const otSockAddr &aAddress);