Revision 639ae8d6 src/com/rackspacecloud/android/ListAccountsActivity.java

b/src/com/rackspacecloud/android/ListAccountsActivity.java
97 97
			loggedIn = false;
98 98
		}
99 99
		if (state != null && state.containsKey("authenticating") && state.getBoolean("authenticating")) {
100
			Log.d("info", "captin on restore show");
101 100
    		showDialog();
102 101
    	} else {
103 102
    		hideDialog();
......
127 126
	protected void onStop(){
128 127
		super.onStop();
129 128
		if(authenticating){
130
			Log.d("info", "captin onstop called");
131 129
			hideDialog();
132 130
			authenticating = true;
133 131
		}
......
232 230
		try {
233 231
			fis = openFileInput(FILENAME);
234 232
			in = new ObjectInputStream(fis);
233
			@SuppressWarnings("unchecked")
235 234
			ArrayList<Account> file = (ArrayList<Account>)in.readObject();
236 235
			in.close();
237 236
			return file;
......
427 426
    	
428 427
		@Override
429 428
		protected void onPreExecute(){
430
			Log.d("info", "auth show called");
431 429
			showDialog();
432 430
		}
433 431
		

Also available in: Unified diff