remove server debug
All checks were successful
ci / deploy (push) Successful in 1m4s

This commit is contained in:
Lee
2024-04-10 09:32:56 +01:00
parent 2e58d9c925
commit d959169f0b
2 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,7 @@ public class WebRequest {
* @return the response
* @param <T> the type of the response
*/
public static <T> T getAsEntity(String url, Class<T> clazz) {
public static <T> T getAsEntity(String url, Class<T> clazz) throws RateLimitException {
try {
ResponseEntity<T> profile = CLIENT.get()
.uri(url)