From 8538c89c436ac85b9c4e93dc829542a11bebc80b Mon Sep 17 00:00:00 2001 From: Brian Pellin Date: Mon, 6 Jul 2009 15:03:11 -0500 Subject: [PATCH] Clean up warnings. --- src/com/android/keepass/PasswordActivity.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/com/android/keepass/PasswordActivity.java b/src/com/android/keepass/PasswordActivity.java index 1a35ed1e8..593c8a41c 100644 --- a/src/com/android/keepass/PasswordActivity.java +++ b/src/com/android/keepass/PasswordActivity.java @@ -28,7 +28,6 @@ import org.bouncycastle.crypto.InvalidCipherTextException; import android.app.Activity; import android.app.ProgressDialog; import android.content.Intent; -import android.content.res.Configuration; import android.os.Bundle; import android.os.Handler; import android.view.Menu; @@ -51,7 +50,6 @@ public class PasswordActivity extends Activity { private String mFileName; private String mKeyFile; private ProgressDialog mPd; - private boolean mIsDialogUp = false; public static void Launch(Activity act, String fileName) throws FileNotFoundException { Launch(act,fileName,""); @@ -154,7 +152,6 @@ public class PasswordActivity extends Activity { String fileName = getEditText(R.id.pass_filename); mPd = ProgressDialog.show(mAct, "Working...", "Loading database", true, false); - mIsDialogUp = true; Thread bkgLoad = new Thread(new BackgroundLoad(fileName, pass, key)); bkgLoad.start(); @@ -229,7 +226,6 @@ public class PasswordActivity extends Activity { @Override public void run() { mPd.dismiss(); - mIsDialogUp = false; if ( mMsg.length() > 0 ) { Toast.makeText(PasswordActivity.this, mMsg, Toast.LENGTH_LONG).show();