Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove verbose code comments #3187

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/lighting-app/efr32/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ int main(void)
appError(ret);
}

// Configure device to operate as a Thread sleepy end-device.
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_Router);
if (ret != CHIP_NO_ERROR)
{
Expand Down
1 change: 0 additions & 1 deletion examples/lock-app/efr32/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ int main(void)
appError(ret);
}

// Configure device to operate as a Thread sleepy end-device.
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_Router);
if (ret != CHIP_NO_ERROR)
{
Expand Down
1 change: 0 additions & 1 deletion examples/lock-app/k32w/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ extern "C" void main_task(void const * argument)
goto exit;
}

// Configure device to operate as a Thread sleepy end-device.
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_SleepyEndDevice);
if (ret != CHIP_NO_ERROR)
{
Expand Down
1 change: 0 additions & 1 deletion examples/platform/nrf528xx/app/chipinit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ ret_code_t ChipInit()
APP_ERROR_HANDLER(ret);
}

// Configure device to operate as a Thread sleepy end-device.
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_Router);
if (ret != CHIP_NO_ERROR)
{
Expand Down