Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56882dc6 authored by cketti's avatar cketti
Browse files

Fix unresolved references in Javadoc comments

parent 3af2e6c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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()
+0 −2
Original line number Diff line number Diff line
@@ -13,8 +13,6 @@ public class OpenPgpApiHelper {
     *
     * @return A string with the following format:
     *         <code>display name &lt;user@example.com&gt;</code>
     *
     * @see org.openintents.openpgp.util.OpenPgpApi#EXTRA_ACCOUNT_NAME
     */
    public static String buildUserId(Identity identity) {
        StringBuilder sb = new StringBuilder();
+2 −2
Original line number Diff line number Diff line
@@ -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.
     */
+2 −1
Original line number Diff line number Diff line
@@ -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;
@@ -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";
+2 −2
Original line number Diff line number Diff line
@@ -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>
@@ -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