| Index: chromeos/components/tether/tether_connector.cc
|
| diff --git a/chromeos/components/tether/tether_connector.cc b/chromeos/components/tether/tether_connector.cc
|
| index 21da910fb43e5fed7683cb194e567c55e71f6921..72e1d297b6c3c66cadab495779f9023abed16da4 100644
|
| --- a/chromeos/components/tether/tether_connector.cc
|
| +++ b/chromeos/components/tether/tether_connector.cc
|
| @@ -206,23 +206,6 @@ void TetherConnector::OnWifiConnection(const std::string& device_id,
|
| return;
|
| }
|
|
|
| - bool successful_association =
|
| - network_state_handler_->AssociateTetherNetworkStateWithWifiNetwork(
|
| - device_id, wifi_network_guid);
|
| - if (successful_association) {
|
| - PA_LOG(INFO) << "Successfully connected to host device with ID "
|
| - << cryptauth::RemoteDevice::TruncateDeviceIdForLogs(device_id)
|
| - << ". Tether network ID: \"" << device_id
|
| - << "\", Wi-Fi network ID: \"" << wifi_network_guid << "\"";
|
| - } else {
|
| - PA_LOG(WARNING) << "Successfully connected to host device with ID "
|
| - << cryptauth::RemoteDevice::TruncateDeviceIdForLogs(
|
| - device_id)
|
| - << ", but failed to associate tether network with ID \""
|
| - << device_id << "\" to Wi-Fi network with ID \""
|
| - << wifi_network_guid << "\".";
|
| - }
|
| -
|
| SetConnected(device_id, wifi_network_guid);
|
| }
|
|
|
|
|