minor code style fixes

This commit is contained in:
Vincent Breitmoser 2015-06-18 02:11:32 +02:00
parent 3b4ff4644d
commit 870ca3f5c3

View File

@ -17,6 +17,7 @@
package org.sufficientlysecure.keychain.service; package org.sufficientlysecure.keychain.service;
import android.app.ProgressDialog; import android.app.ProgressDialog;
import android.os.Bundle; import android.os.Bundle;
import android.os.Handler; import android.os.Handler;
@ -129,7 +130,8 @@ public class ServiceProgressHandler extends Handler {
if (data.containsKey(DATA_PROGRESS) && data.containsKey(DATA_PROGRESS_MAX)) { if (data.containsKey(DATA_PROGRESS) && data.containsKey(DATA_PROGRESS_MAX)) {
String msg = null; String msg = null;
int progress = data.getInt(DATA_PROGRESS), max =data.getInt(DATA_PROGRESS_MAX); int progress = data.getInt(DATA_PROGRESS);
int max = data.getInt(DATA_PROGRESS_MAX);
// update progress from service // update progress from service
if (data.containsKey(DATA_MESSAGE)) { if (data.containsKey(DATA_MESSAGE)) {