Удалил лишний метод
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2023-04-02 14:38:34 +03:00
parent 5a8c7803d6
commit 116950b463
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6
2 changed files with 0 additions and 10 deletions

View File

@ -1,7 +1,5 @@
package dev.struchkov.godfather.quarkus.context.service;
import dev.struchkov.godfather.quarkus.domain.BoxAnswer;
import dev.struchkov.godfather.quarkus.domain.SentBox;
import dev.struchkov.godfather.quarkus.domain.action.PreSendProcessing;
import io.smallrye.mutiny.Uni;
import org.jetbrains.annotations.NotNull;
@ -17,6 +15,4 @@ public interface SendingService extends Sending {
Uni<Void> deleteMessage(@NotNull String personId, @NotNull String messageId);
Uni<SentBox> replaceMessage(@NotNull String personId, @NotNull String messageId, @NotNull BoxAnswer newAnswer);
}

View File

@ -1,12 +1,8 @@
package dev.struchkov.godfather.simple.context.service;
import dev.struchkov.godfather.simple.domain.BoxAnswer;
import dev.struchkov.godfather.simple.domain.SentBox;
import dev.struchkov.godfather.simple.domain.action.PreSendProcessing;
import org.jetbrains.annotations.NotNull;
import java.util.Optional;
/**
* Интерфейс для отправки ответов пользователю.
*
@ -18,6 +14,4 @@ public interface SendingService extends Sending {
void deleteMessage(@NotNull String personId, @NotNull String messageId);
Optional<SentBox> replaceMessage(@NotNull String personId, @NotNull String messageId, @NotNull BoxAnswer newAnswer);
}