Skip to content

Commit 5e40ac3

Browse files
committed
Move AbstractControl one level up
- Relates #813
1 parent e447826 commit 5e40ac3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

spring-shell-core/src/main/java/org/springframework/shell/component/view/control/cell/AbstractControl.java renamed to spring-shell-core/src/main/java/org/springframework/shell/component/view/control/AbstractControl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.shell.component.view.control.cell;
16+
package org.springframework.shell.component.view.control;
1717

1818
import java.util.Optional;
1919

2020
import org.jline.utils.AttributedStyle;
2121

2222
import org.springframework.lang.Nullable;
23-
import org.springframework.shell.component.view.control.Control;
2423
import org.springframework.shell.component.view.geom.Rectangle;
2524
import org.springframework.shell.style.ThemeResolver;
2625
import org.springframework.shell.style.ThemeResolver.ResolvedValues;

spring-shell-core/src/main/java/org/springframework/shell/component/view/control/AbstractView.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import org.springframework.lang.Nullable;
2929
import org.springframework.messaging.Message;
30-
import org.springframework.shell.component.view.control.cell.AbstractControl;
3130
import org.springframework.shell.component.view.event.EventLoop;
3231
import org.springframework.shell.component.view.event.KeyBindingConsumer;
3332
import org.springframework.shell.component.view.event.KeyBindingConsumerArgs;

spring-shell-core/src/main/java/org/springframework/shell/component/view/control/cell/AbstractCell.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.springframework.shell.component.view.control.cell;
1717

18+
import org.springframework.shell.component.view.control.AbstractControl;
1819
import org.springframework.shell.component.view.control.Cell;
1920

2021
public abstract class AbstractCell<T> extends AbstractControl implements Cell<T> {

0 commit comments

Comments
 (0)