Move AbstractControl one level up

- Relates #813
This commit is contained in:
Janne Valkealahti
2023-08-06 12:57:34 +01:00
parent e447826a93
commit 5e40ac3815
3 changed files with 2 additions and 3 deletions

View File

@@ -13,14 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.shell.component.view.control.cell;
package org.springframework.shell.component.view.control;
import java.util.Optional;
import org.jline.utils.AttributedStyle;
import org.springframework.lang.Nullable;
import org.springframework.shell.component.view.control.Control;
import org.springframework.shell.component.view.geom.Rectangle;
import org.springframework.shell.style.ThemeResolver;
import org.springframework.shell.style.ThemeResolver.ResolvedValues;

View File

@@ -27,7 +27,6 @@ import reactor.core.Disposables;
import org.springframework.lang.Nullable;
import org.springframework.messaging.Message;
import org.springframework.shell.component.view.control.cell.AbstractControl;
import org.springframework.shell.component.view.event.EventLoop;
import org.springframework.shell.component.view.event.KeyBindingConsumer;
import org.springframework.shell.component.view.event.KeyBindingConsumerArgs;

View File

@@ -15,6 +15,7 @@
*/
package org.springframework.shell.component.view.control.cell;
import org.springframework.shell.component.view.control.AbstractControl;
import org.springframework.shell.component.view.control.Cell;
public abstract class AbstractCell<T> extends AbstractControl implements Cell<T> {