Skip to content

Commit 822c963

Browse files
committed
fix(sound): remove valid annotation to avoid issues with v7 uuids
1 parent e810e52 commit 822c963

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/net/onelitefeather/vulpes/backend/service/SoundService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,21 +77,21 @@ public interface SoundService {
7777
* @param sourceDTO the source data to create
7878
* @return the created source response
7979
*/
80-
SoundResponseDTO createAndLinkSource(@Valid UUID soundEventId, SoundFileSourceDTO sourceDTO);
80+
SoundResponseDTO createAndLinkSource(UUID soundEventId, SoundFileSourceDTO sourceDTO);
8181

8282
/**
8383
* Updates an existing sound file source linked to a sound event by ID.
8484
* @param soundEventId the ID of the sound event
8585
* @param sourceDTO the source data to update
8686
* @return the updated source response
8787
*/
88-
SoundResponseDTO updateLinkedSource(@Valid UUID soundEventId, SoundFileSourceDTO sourceDTO);
88+
SoundResponseDTO updateLinkedSource(UUID soundEventId, SoundFileSourceDTO sourceDTO);
8989

9090
/**
9191
* Deletes an existing sound file source linked to a sound event by ID.
9292
* @param soundEventId the ID of the sound event
9393
* @param sourceDTO the source data to delete
9494
* @return the deleted source response
9595
*/
96-
SoundResponseDTO deleteLinkedSource(@Valid UUID soundEventId, SoundFileSourceDTO sourceDTO);
96+
SoundResponseDTO deleteLinkedSource(UUID soundEventId, SoundFileSourceDTO sourceDTO);
9797
}

0 commit comments

Comments
 (0)