Skip to content

Commit a3ee4e5

Browse files
committed
Cleanup
1 parent c6f47ed commit a3ee4e5

File tree

17 files changed

+21
-14
lines changed

17 files changed

+21
-14
lines changed

spring-shell-tui/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@
6666
<artifactId>slf4j-api</artifactId>
6767
<version>${slf4j.version}</version>
6868
</dependency>
69+
<dependency>
70+
<groupId>org.jspecify</groupId>
71+
<artifactId>jspecify</artifactId>
72+
<version>${jspecify.version}</version>
73+
</dependency>
6974

7075
<!-- Test dependencies -->
7176
<dependency>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component.context;
2+
package org.springframework.shell.tui.component.context;
33

44
import org.jspecify.annotations.NullMarked;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component.flow;
2+
package org.springframework.shell.tui.component.flow;
33

44
import org.jspecify.annotations.NullMarked;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component.message;
2+
package org.springframework.shell.tui.component.message;
33

44
import org.jspecify.annotations.NullMarked;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component;
2+
package org.springframework.shell.tui.component;
33

44
import org.jspecify.annotations.NullMarked;

spring-shell-tui/src/main/java/org/springframework/shell/tui/component/support/AbstractSelectorComponent.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.tui.component.support;
1717

18+
import java.util.ArrayList;
1819
import java.util.Comparator;
1920
import java.util.List;
2021
import java.util.Map;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component.support;
2+
package org.springframework.shell.tui.component.support;
33

44
import org.jspecify.annotations.NullMarked;

spring-shell-tui/src/main/java/org/springframework/shell/tui/component/view/control/MenuBarView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
import org.springframework.shell.tui.component.view.control.MenuView.MenuItem;
3030
import org.springframework.shell.tui.component.view.control.MenuView.MenuViewOpenSelectedItemEvent;
31+
import org.springframework.shell.tui.component.view.event.EventLoop;
3132
import org.springframework.shell.tui.component.view.event.KeyEvent.Key;
3233
import org.springframework.shell.tui.component.view.event.KeyHandler;
3334
import org.springframework.shell.tui.component.view.event.MouseEvent;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component.view.control.cell;
2+
package org.springframework.shell.tui.component.view.control.cell;
33

44
import org.jspecify.annotations.NullMarked;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@NullMarked
2-
package org.springframework.shell.component.view.control;
2+
package org.springframework.shell.tui.component.view.control;
33

44
import org.jspecify.annotations.NullMarked;

0 commit comments

Comments
 (0)