From 1a955d4f36a105e1781ca8c506761e76d26908be Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Thu, 26 Aug 2021 16:32:00 -0400 Subject: [PATCH] More review comments --- src/lib/core/CHIPTLV.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib/core/CHIPTLV.h b/src/lib/core/CHIPTLV.h index 876e8157dd98bb..e1ea9c6cff1901 100644 --- a/src/lib/core/CHIPTLV.h +++ b/src/lib/core/CHIPTLV.h @@ -892,8 +892,6 @@ class ContiguousBufferTLVReader : public TLVReader * @retval #CHIP_ERROR_WRONG_TLV_TYPE If the current element is not a TLV UTF8 string, or * the reader is not positioned on an element. * @retval #CHIP_ERROR_TLV_UNDERRUN If the underlying TLV encoding ended prematurely (i.e. the string length was "too big"). - * @retval other Other CHIP or platform error codes returned by the configured - * TLVBackingStore. * */ CHIP_ERROR GetStringView(Span & data); @@ -910,8 +908,6 @@ class ContiguousBufferTLVReader : public TLVReader * @retval #CHIP_ERROR_WRONG_TLV_TYPE If the current element is not a TLV octet string, or * the reader is not positioned on an element. * @retval #CHIP_ERROR_TLV_UNDERRUN If the underlying TLV encoding ended prematurely (i.e. the string length was "too big"). - * @retval other Other CHIP or platform error codes returned by the configured - * TLVBackingStore. * */ CHIP_ERROR GetByteView(ByteSpan & data);