Skip to content

Commit b36fa68

Browse files
restyled-commitsarun-silabs
authored andcommitted
Restyled by whitespace
1 parent 4c3c584 commit b36fa68

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

examples/oven-app/oven-app-common/include/CookSurfaceEndpoint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CookSurfaceEndpoint
3434

3535
/**
3636
* @brief Initialize the CookSurface endpoint.
37-
*
37+
*
3838
* @return returns CHIP_NO_ERROR on success, or an error code on failure.
3939
*/
4040
CHIP_ERROR Init();

examples/oven-app/oven-app-common/include/CookTopEndpoint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CookTopEndpoint
3333

3434
/**
3535
* @brief Initialize the cooktop endpoint.
36-
*
36+
*
3737
* @return returns CHIP_NO_ERROR on success, or an error code on failure.
3838
*/
3939
CHIP_ERROR Init();

examples/oven-app/oven-app-common/include/OvenEndpoint.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class TemperatureControlledCabinetEndpoint
8383

8484
/**
8585
* @brief Initialize the temperature controlled cabinet endpoint. Sets the oven mode cluster instance with the appropriate delegate.
86-
*
86+
*
8787
* @return returns CHIP_NO_ERROR on success, or an error code on failure.
8888
*/
8989
CHIP_ERROR Init();
@@ -107,7 +107,7 @@ class OvenEndpoint
107107

108108
/**
109109
* @brief Initialize the oven endpoint.
110-
*
110+
*
111111
* @return returns CHIP_NO_ERROR on success, or an error code on failure.
112112
*/
113113
CHIP_ERROR Init();

examples/oven-app/silabs/src/AppSupportedTemperatureLevelsDelegate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ CHIP_ERROR AppSupportedTemperatureLevelsDelegate::RegisterSupportedLevels(Endpoi
3232

3333
VerifyOrReturnError(mRegisteredEndpointCount < kNumCookSurfaceEndpoints, CHIP_ERROR_NO_MEMORY,
3434
ChipLogError(AppServer, "RegisterSupportedLevels: capacity exceeded (%zu)", mRegisteredEndpointCount));
35-
35+
3636
// Prevent duplicate endpoints
3737
for (size_t i = 0; i < mRegisteredEndpointCount; ++i)
3838
{

examples/oven-app/silabs/src/OvenManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ CHIP_ERROR OvenManager::SetTemperatureControlledCabinetInitialState(EndpointId t
108108
VerifyOrReturnError(tcStatus == Status::Success, CHIP_ERROR_INTERNAL, ChipLogError(AppServer, "Endpoint2 Step init failed"));
109109

110110
return CHIP_NO_ERROR;
111-
}
111+
}

0 commit comments

Comments
 (0)