Skip to content

Commit 7689389

Browse files
committed
Use correct nullable annotations in smoke tests
See gh-46926
1 parent f81f2de commit 7689389

File tree

2 files changed

+2
-2
lines changed
  • smoke-test
    • spring-boot-smoke-test-web-thymeleaf/src/main/java/smoketest/web/thymeleaf
    • spring-boot-smoke-test-websocket-jetty/src/main/java/smoketest/websocket/jetty/snake

2 files changed

+2
-2
lines changed

smoke-test/spring-boot-smoke-test-web-thymeleaf/src/main/java/smoketest/web/thymeleaf/Message.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
import java.util.Calendar;
2020

21-
import jakarta.annotation.Nullable;
2221
import jakarta.validation.constraints.NotEmpty;
22+
import org.jspecify.annotations.Nullable;
2323

2424
public class Message {
2525

smoke-test/spring-boot-smoke-test-websocket-jetty/src/main/java/smoketest/websocket/jetty/snake/SnakeTimer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
import java.util.concurrent.ConcurrentHashMap;
2525
import java.util.concurrent.CopyOnWriteArrayList;
2626

27-
import jakarta.annotation.Nullable;
2827
import org.apache.commons.logging.Log;
2928
import org.apache.commons.logging.LogFactory;
29+
import org.jspecify.annotations.Nullable;
3030

3131
/**
3232
* Sets up the timer for the multiplayer snake game WebSocket example.

0 commit comments

Comments
 (0)