Clean up warnings.

This commit is contained in:
Brian Pellin
2009-07-06 15:03:11 -05:00
parent 8f90cfeafa
commit 8538c89c43

View File

@@ -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();