From c4b61d1024b8d2d8c7bde74ada472035641fb1b7 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sun, 10 Oct 2021 21:56:06 -0400 Subject: [PATCH] refactoring --- java_console/ui/src/main/java/com/rusefi/CommandControl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/java_console/ui/src/main/java/com/rusefi/CommandControl.java b/java_console/ui/src/main/java/com/rusefi/CommandControl.java index 3d67e53798..d40d929922 100644 --- a/java_console/ui/src/main/java/com/rusefi/CommandControl.java +++ b/java_console/ui/src/main/java/com/rusefi/CommandControl.java @@ -1,7 +1,6 @@ package com.rusefi; import com.rusefi.autoupdate.AutoupdateUtil; -import com.rusefi.io.CommandQueue; import com.rusefi.ui.UIContext; import com.rusefi.ui.util.UiUtils; import org.jetbrains.annotations.NotNull; @@ -12,6 +11,9 @@ import java.awt.*; import java.awt.event.ActionListener; /** + * A control which sends specific command defined by @link {@link #getCommand()} method + * + * @see com.rusefi.ui.widgets.AnyCommand for free type command control * Andrey Belomutskiy, (c) 2013-2020 */ abstract class CommandControl {