This commit is contained in:
Jesse Vincent 2010-08-29 16:57:13 +00:00
parent 7300aca2b8
commit e0447e32cc
7 changed files with 25 additions and 21 deletions

View File

@ -1491,8 +1491,10 @@ public class Account implements BaseAccount
lastSelectedFolderName = folderName;
}
public synchronized CryptoProvider getCryptoProvider() {
if (mCryptoProvider == null) {
public synchronized CryptoProvider getCryptoProvider()
{
if (mCryptoProvider == null)
{
mCryptoProvider = CryptoProvider.createInstance(getCryptoApp());
}
return mCryptoProvider;

View File

@ -1733,8 +1733,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
final String escapedPrefix = prefix.replaceAll("(\\\\|\\$)", "\\\\$1");
final String text = (mSourceMessageBody != null) ?
mSourceMessageBody :
MimeUtility.getTextFromPart(part);
mSourceMessageBody :
MimeUtility.getTextFromPart(part);
final String wrappedText = Utility.wrap(text, REPLY_WRAP_LINE_WIDTH - prefix.length());

View File

@ -787,8 +787,8 @@ public class AccountSettings extends K9PreferenceActivity
// Do the vibration to show the user what it's like.
Vibrator vibrate = (Vibrator)preference.getContext().getSystemService(Context.VIBRATOR_SERVICE);
long[] pattern = MessagingController.getVibratePattern(
Integer.parseInt(mAccountVibratePattern.getValue()),
Integer.parseInt(mAccountVibrateTimes.getValue()));
Integer.parseInt(mAccountVibratePattern.getValue()),
Integer.parseInt(mAccountVibrateTimes.getValue()));
vibrate.vibrate(pattern, -1);
}
}

View File

@ -2499,13 +2499,13 @@ public class MessagingController implements Runnable
Store remoteStore = account.getRemoteStore();
Folder remoteFolder = remoteStore.getFolder(folder);
if (!remoteFolder.exists() ||
/*
* Don't proceed if the remote folder doesn't support flags and
* the flag to be changed isn't the deleted flag. This avoids
* unnecessary connections to POP3 servers.
*/
// TODO: This should actually call a supportsSettingFlag(flag) method.
(!remoteFolder.supportsFetchingFlags() && !Flag.DELETED.equals(flag)))
/*
* Don't proceed if the remote folder doesn't support flags and
* the flag to be changed isn't the deleted flag. This avoids
* unnecessary connections to POP3 servers.
*/
// TODO: This should actually call a supportsSettingFlag(flag) method.
(!remoteFolder.supportsFetchingFlags() && !Flag.DELETED.equals(flag)))
{
return;
}

View File

@ -2,7 +2,8 @@ package com.fsck.k9.crypto;
import java.io.Serializable;
public class PgpData implements Serializable {
public class PgpData implements Serializable
{
protected long mEncryptionKeyIds[] = null;
protected long mSignatureKeyId = 0;
protected String mSignatureUserId = null;

View File

@ -166,9 +166,9 @@ public class MimeHeader
public String toString()
{
StringBuilder sb = new StringBuilder("(");
sb.append(name).append('=').append(value).append(')');
return sb.toString();
}
StringBuilder sb = new StringBuilder("(");
sb.append(name).append('=').append(value).append(')');
return sb.toString();
}
}
}

View File

@ -202,9 +202,10 @@ public class MessageProvider extends ContentProvider
public void setApplication(Application app)
{
if (context == null) {
context = app.getApplicationContext();
}
if (context == null)
{
context = app.getApplicationContext();
}
if (app != null)
{
mApp = app;