Use correct nullable annotations in smoke tests

See gh-46926
This commit is contained in:
Moritz Halbritter 2025-09-16 15:03:02 +02:00
parent f81f2decf1
commit 7689389349
2 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ package smoketest.web.thymeleaf;
import java.util.Calendar;
import jakarta.annotation.Nullable;
import jakarta.validation.constraints.NotEmpty;
import org.jspecify.annotations.Nullable;
public class Message {

View File

@ -24,9 +24,9 @@ import java.util.TimerTask;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.CopyOnWriteArrayList;
import jakarta.annotation.Nullable;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jspecify.annotations.Nullable;
/**
* Sets up the timer for the multiplayer snake game WebSocket example.