- medeia validator was bringing some jetbrains deps, now that
has been removed, can't find the @NotNull annotation; removing
the annotation as its not needed.
Issue-ID: POLICY-5084
Change-Id: Ib4f17ce750314ee8b410da0ce27b6c144ed38058
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
import jakarta.ws.rs.core.Response;
import java.util.Collections;
import java.util.List;
-import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
assertNotNull(HttpClient.getBody(response, clazz));
}
- @NotNull
private Response checkResponse(int statusCode, Response response) {
assertEquals(statusCode, response.getStatus());
return response;