浏览代码

authentication: Renamed Bundle object in onCreate().

eho 7 年之前
父节点
当前提交
04da4de923
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/main/java/com/owncloud/android/authentication/AccountAuthenticatorActivity.java

+ 4 - 4
src/main/java/com/owncloud/android/authentication/AccountAuthenticatorActivity.java

@@ -49,13 +49,13 @@ public class AccountAuthenticatorActivity extends AppCompatActivity {
     }
 
     /**
-     * Retreives the AccountAuthenticatorResponse from either the intent of the icicle, if the
+     * Retrieves the AccountAuthenticatorResponse from either the intent of the icicle, if the
      * icicle is non-zero.
-     * @param icicle the save instance data of this Activity, may be null
+     * @param savedInstanceState the save instance data of this Activity, may be null
      */
     @Override
-    protected void onCreate(Bundle icicle) {
-        super.onCreate(icicle);
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
 
         mAccountAuthenticatorResponse =
                 getIntent().getParcelableExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE);