File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/net/onelitefeather/vulpes/backend/service Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments