restructures code into a more sensible path structure

This commit is contained in:
Rasmus Neikes 2024-12-07 14:54:23 +01:00
parent d4eaad7361
commit bc804bedbc
2 changed files with 1 additions and 3 deletions

View File

@ -31,7 +31,7 @@ public class ProfileController {
// TODO figure out how to handle the exception. // TODO figure out how to handle the exception.
@Nonnull @Nonnull
@GetMapping("/") @GetMapping("/")
public List<?> findAll() throws InvalidKeyException { public List<?> findAll() {
return profileService.findAll(); return profileService.findAll();
} }

View File

@ -6,8 +6,6 @@ import org.junit.jupiter.api.Test;
import java.security.InvalidKeyException; import java.security.InvalidKeyException;
import static org.junit.Assert.assertEquals;
class EncryptIdTest { class EncryptIdTest {