am ca324f5a: am 547089c3: Merge "Fix wifi network strings shown in Settings." into mnc-dev

* commit 'ca324f5abf12bab607c74c5aaa0c5e256c5dcefc':
  Fix wifi network strings shown in Settings.
This commit is contained in:
Sanket Padawe
2015-06-06 02:21:16 +00:00
committed by Android Git Automerger
2 changed files with 6 additions and 4 deletions

View File

@@ -271,8 +271,8 @@ public class WifiConfigController implements TextWatcher,
WifiInfo info = mAccessPoint.getInfo();
if (info != null && info.getLinkSpeed() != -1) {
addRow(group, R.string.wifi_speed, info.getLinkSpeed()
+ WifiInfo.LINK_SPEED_UNITS);
addRow(group, R.string.wifi_speed, String.format(
res.getString(R.string.link_speed), info.getLinkSpeed()));
}
if (info != null && info.getFrequency() != -1) {