Loading app/core/src/main/java/com/fsck/k9/K9.java +1 −1 Original line number Diff line number Diff line Loading @@ -359,7 +359,7 @@ public class K9 { * Using {@code SharedPreferences} should be a lot faster than opening all SQLite databases to * get the current database version. * </p><p> * See {@link UpgradeDatabases} for a detailed explanation of the database upgrade process. * See the class {@code UpgradeDatabases} for a detailed explanation of the database upgrade process. * </p> * * @see #areDatabasesUpToDate() Loading app/core/src/main/java/com/fsck/k9/crypto/OpenPgpApiHelper.java +0 −2 Original line number Diff line number Diff line Loading @@ -13,8 +13,6 @@ public class OpenPgpApiHelper { * * @return A string with the following format: * <code>display name <user@example.com></code> * * @see org.openintents.openpgp.util.OpenPgpApi#EXTRA_ACCOUNT_NAME */ public static String buildUserId(Identity identity) { StringBuilder sb = new StringBuilder(); Loading app/core/src/main/java/com/fsck/k9/search/ConditionsTreeNode.java +2 −2 Original line number Diff line number Diff line Loading @@ -292,8 +292,8 @@ public class ConditionsTreeNode implements Parcelable { * * This method only supports node arguments with a null parent node. * * @param Node to add. * @param Operator that will connect the new node with this one. * @param node Node to add. * @param op Operator that will connect the new node with this one. * @return New parent node, containing the operator. * @throws Exception Throws when the provided new node does not have a null parent. */ Loading app/k9mail/src/main/java/com/fsck/k9/external/remotecontrol/K9RemoteControl.java +2 −1 Original line number Diff line number Diff line Loading @@ -3,6 +3,7 @@ package com.fsck.k9.external.remotecontrol; import android.app.Activity; import android.content.Context; import android.content.ContextWrapper; import android.content.Intent; import com.fsck.k9.BuildConfig; Loading @@ -29,7 +30,7 @@ public class K9RemoteControl { */ public static String K9_REMOTE_CONTROL_PERMISSION = BuildConfig.APPLICATION_ID + ".permission.REMOTE_CONTROL"; /** * {@link Intent} Action to be sent to K-9 using {@link ContextWrapper.sendOrderedBroadcast} in order to fetch the list of configured Accounts. * {@link Intent} Action to be sent to K-9 using {@link ContextWrapper#sendBroadcast(Intent)} in order to fetch the list of configured Accounts. * The responseData will contain two String[] with keys K9_ACCOUNT_UUIDS and K9_ACCOUNT_DESCRIPTIONS */ public static String K9_REQUEST_ACCOUNTS = BuildConfig.APPLICATION_ID + ".K9RemoteControl.requestAccounts"; Loading app/ui/src/main/java/com/fsck/k9/activity/misc/SwipeGestureDetector.java +2 −2 Original line number Diff line number Diff line Loading @@ -91,7 +91,7 @@ public class SwipeGestureDetector extends SimpleOnGestureListener { */ public interface OnSwipeGestureListener { /** * Called when a swipe from right to left is handled by {@link MyGestureDetector}. * Called when a swipe from right to left is handled by {@link SwipeGestureDetector}. * * <p>See {@link OnGestureListener#onFling(MotionEvent, MotionEvent, float, float)} * for more information on the {@link MotionEvent}s being passed.</p> Loading @@ -104,7 +104,7 @@ public class SwipeGestureDetector extends SimpleOnGestureListener { void onSwipeRightToLeft(final MotionEvent e1, final MotionEvent e2); /** * Called when a swipe from left to right is handled by {@link MyGestureDetector}. * Called when a swipe from left to right is handled by {@link SwipeGestureDetector}. * * <p>See {@link OnGestureListener#onFling(MotionEvent, MotionEvent, float, float)} * for more information on the {@link MotionEvent}s being passed.</p> Loading Loading
app/core/src/main/java/com/fsck/k9/K9.java +1 −1 Original line number Diff line number Diff line Loading @@ -359,7 +359,7 @@ public class K9 { * Using {@code SharedPreferences} should be a lot faster than opening all SQLite databases to * get the current database version. * </p><p> * See {@link UpgradeDatabases} for a detailed explanation of the database upgrade process. * See the class {@code UpgradeDatabases} for a detailed explanation of the database upgrade process. * </p> * * @see #areDatabasesUpToDate() Loading
app/core/src/main/java/com/fsck/k9/crypto/OpenPgpApiHelper.java +0 −2 Original line number Diff line number Diff line Loading @@ -13,8 +13,6 @@ public class OpenPgpApiHelper { * * @return A string with the following format: * <code>display name <user@example.com></code> * * @see org.openintents.openpgp.util.OpenPgpApi#EXTRA_ACCOUNT_NAME */ public static String buildUserId(Identity identity) { StringBuilder sb = new StringBuilder(); Loading
app/core/src/main/java/com/fsck/k9/search/ConditionsTreeNode.java +2 −2 Original line number Diff line number Diff line Loading @@ -292,8 +292,8 @@ public class ConditionsTreeNode implements Parcelable { * * This method only supports node arguments with a null parent node. * * @param Node to add. * @param Operator that will connect the new node with this one. * @param node Node to add. * @param op Operator that will connect the new node with this one. * @return New parent node, containing the operator. * @throws Exception Throws when the provided new node does not have a null parent. */ Loading
app/k9mail/src/main/java/com/fsck/k9/external/remotecontrol/K9RemoteControl.java +2 −1 Original line number Diff line number Diff line Loading @@ -3,6 +3,7 @@ package com.fsck.k9.external.remotecontrol; import android.app.Activity; import android.content.Context; import android.content.ContextWrapper; import android.content.Intent; import com.fsck.k9.BuildConfig; Loading @@ -29,7 +30,7 @@ public class K9RemoteControl { */ public static String K9_REMOTE_CONTROL_PERMISSION = BuildConfig.APPLICATION_ID + ".permission.REMOTE_CONTROL"; /** * {@link Intent} Action to be sent to K-9 using {@link ContextWrapper.sendOrderedBroadcast} in order to fetch the list of configured Accounts. * {@link Intent} Action to be sent to K-9 using {@link ContextWrapper#sendBroadcast(Intent)} in order to fetch the list of configured Accounts. * The responseData will contain two String[] with keys K9_ACCOUNT_UUIDS and K9_ACCOUNT_DESCRIPTIONS */ public static String K9_REQUEST_ACCOUNTS = BuildConfig.APPLICATION_ID + ".K9RemoteControl.requestAccounts"; Loading
app/ui/src/main/java/com/fsck/k9/activity/misc/SwipeGestureDetector.java +2 −2 Original line number Diff line number Diff line Loading @@ -91,7 +91,7 @@ public class SwipeGestureDetector extends SimpleOnGestureListener { */ public interface OnSwipeGestureListener { /** * Called when a swipe from right to left is handled by {@link MyGestureDetector}. * Called when a swipe from right to left is handled by {@link SwipeGestureDetector}. * * <p>See {@link OnGestureListener#onFling(MotionEvent, MotionEvent, float, float)} * for more information on the {@link MotionEvent}s being passed.</p> Loading @@ -104,7 +104,7 @@ public class SwipeGestureDetector extends SimpleOnGestureListener { void onSwipeRightToLeft(final MotionEvent e1, final MotionEvent e2); /** * Called when a swipe from left to right is handled by {@link MyGestureDetector}. * Called when a swipe from left to right is handled by {@link SwipeGestureDetector}. * * <p>See {@link OnGestureListener#onFling(MotionEvent, MotionEvent, float, float)} * for more information on the {@link MotionEvent}s being passed.</p> Loading