commit | a60604bb150c39aa5ae8a6bc004c791dbaca2bcb | [log] [tgz] |
---|---|---|
author | Boris Zbarsky <bzbarsky@apple.com> | Mon Jun 26 21:37:21 2023 -0400 |
committer | GitHub <noreply@github.com> | Tue Jun 27 01:37:21 2023 +0000 |
tree | e5a9a33f513b8c7ffdb6f468289cb312bdcc060d | |
parent | 1548bae49f9ff280b98ddf433c9f9f2adb0e617d [diff] |
Remove WillDecodeNull layering violation. (#27491) This should have been done differently to start with, and the only consumer is gone anyway. Fixes https://github.com/project-chip/connectedhomeip/issues/23057
diff --git a/src/app/AttributeAccessInterface.h b/src/app/AttributeAccessInterface.h index 2b16392..8b4ec3a 100644 --- a/src/app/AttributeAccessInterface.h +++ b/src/app/AttributeAccessInterface.h
@@ -370,11 +370,6 @@ return CHIP_NO_ERROR; } - /** - * Is the next element of the stream NULL. - */ - bool WillDecodeNull() const { return mReader.GetType() == TLV::kTLVType_Null; } - bool TriedDecode() const { return mTriedDecode; } /**