fixed typo in API

This commit is contained in:
Philipp Schaefer
2013-05-23 13:44:00 +02:00
parent d61c5cc752
commit f58e8cfa83
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ public class IITC_DeviceAccountLogin implements AccountManagerCallback<Bundle> {
if (result != null) { if (result != null) {
// authentication succeded, we can load the given url, which will redirect back to the intel map // authentication succeded, we can load the given url, which will redirect back to the intel map
mWebView.loadUrl(result); mWebView.loadUrl(result);
mActivity.loginSucceded(); mActivity.loginSucceeded();
} else { } else {
onLoginFailed(); onLoginFailed();
} }

View File

@ -399,7 +399,7 @@ public class IITC_Mobile extends Activity {
/** /**
* called after successful login * called after successful login
*/ */
public void loginSucceded() { public void loginSucceeded() {
// garbage collection // garbage collection
mLogin = null; mLogin = null;
} }