Skip to content

Commit e95f498

Browse files
John WangAndroid (Google) Code Review
authored andcommitted
Merge "Fix a build break." into ics-mr1
2 parents 8ce22f2 + b74ecb1 commit e95f498

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

telephony/java/com/android/internal/telephony/gsm/GsmDataConnectionTracker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1851,8 +1851,8 @@ protected void onDataSetupComplete(AsyncResult ar) {
18511851
// TODO We may use apnContext.getApnSetting() directly
18521852
// instead of getWaitingApns().get(0)
18531853
String apnStr = "<unknown>";
1854-
if (apnContext.getWaitngApns() != null
1855-
&& !apnContext.getWatingApns().isEmpty()){
1854+
if (apnContext.getWaitingApns() != null
1855+
&& !apnContext.getWaitingApns().isEmpty()){
18561856
apnStr = apnContext.getWaitingApns().get(0).apn;
18571857
}
18581858
log("onDataSetupComplete: success apn=" + apnStr);

0 commit comments

Comments
 (0)