Use correct nullable annotations in smoke tests
See gh-46926
This commit is contained in:
parent
f81f2decf1
commit
7689389349
|
@ -18,8 +18,8 @@ package smoketest.web.thymeleaf;
|
||||||
|
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
|
|
||||||
import jakarta.annotation.Nullable;
|
|
||||||
import jakarta.validation.constraints.NotEmpty;
|
import jakarta.validation.constraints.NotEmpty;
|
||||||
|
import org.jspecify.annotations.Nullable;
|
||||||
|
|
||||||
public class Message {
|
public class Message {
|
||||||
|
|
||||||
|
|
|
@ -24,9 +24,9 @@ import java.util.TimerTask;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.CopyOnWriteArrayList;
|
import java.util.concurrent.CopyOnWriteArrayList;
|
||||||
|
|
||||||
import jakarta.annotation.Nullable;
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.jspecify.annotations.Nullable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up the timer for the multiplayer snake game WebSocket example.
|
* Sets up the timer for the multiplayer snake game WebSocket example.
|
||||||
|
|
Loading…
Reference in New Issue