Fixed: Fix broken javadocs links

This commit is contained in:
agnostic-apollo
2022-04-26 02:33:51 +05:00
parent 55dcd09a09
commit c549988434
2 changed files with 4 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import android.widget.Button;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import com.google.android.material.button.MaterialButton;
import com.termux.shared.termux.extrakeys.ExtraKeysConstants.EXTRA_KEY_DISPLAY_MAPS; import com.termux.shared.termux.extrakeys.ExtraKeysConstants.EXTRA_KEY_DISPLAY_MAPS;
import com.termux.shared.termux.terminal.io.TerminalExtraKeys; import com.termux.shared.termux.terminal.io.TerminalExtraKeys;
@@ -68,7 +69,7 @@ import org.json.JSONObject;
* *
* Its up to the {@link ExtraKeysView.IExtraKeysView} client on how to handle individual key values * Its up to the {@link ExtraKeysView.IExtraKeysView} client on how to handle individual key values
* of an {@link ExtraKeyButton}. They are sent as is via * of an {@link ExtraKeyButton}. They are sent as is via
* {@link ExtraKeysView.IExtraKeysView#onExtraKeyButtonClick(View, ExtraKeyButton, Button)}. The * {@link ExtraKeysView.IExtraKeysView#onExtraKeyButtonClick(View, ExtraKeyButton, MaterialButton)}. The
* {@link TerminalExtraKeys} which is an implementation of the interface, * {@link TerminalExtraKeys} which is an implementation of the interface,
* checks if the key is one of {@link ExtraKeysConstants#PRIMARY_KEY_CODES_FOR_STRINGS} and generates * checks if the key is one of {@link ExtraKeysConstants#PRIMARY_KEY_CODES_FOR_STRINGS} and generates
* a {@link android.view.KeyEvent} for it, and if its not, then converts the key to code points by * a {@link android.view.KeyEvent} for it, and if its not, then converts the key to code points by

View File

@@ -217,10 +217,10 @@ public class TermuxSession {
* callback will be called. * callback will be called.
* *
* @param termuxSession The {@link TermuxSession}, which should be set if * @param termuxSession The {@link TermuxSession}, which should be set if
* {@link #execute(Context, ExecutionCommand, TerminalSessionClient, TermuxSessionClient, ShellEnvironmentClient, String, boolean)} * {@link #execute(Context, ExecutionCommand, TerminalSessionClient, TermuxSessionClient, ShellEnvironmentClient, boolean)}
* successfully started the process. * successfully started the process.
* @param executionCommand The {@link ExecutionCommand}, which should be set if * @param executionCommand The {@link ExecutionCommand}, which should be set if
* {@link #execute(Context, ExecutionCommand, TerminalSessionClient, TermuxSessionClient, ShellEnvironmentClient, String, boolean)} * {@link #execute(Context, ExecutionCommand, TerminalSessionClient, TermuxSessionClient, ShellEnvironmentClient, boolean)}
* failed to start the process. * failed to start the process.
*/ */
private static void processTermuxSessionResult(final TermuxSession termuxSession, ExecutionCommand executionCommand) { private static void processTermuxSessionResult(final TermuxSession termuxSession, ExecutionCommand executionCommand) {