Поправил MailAutoresponderTelegram
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2023-04-23 05:03:07 +03:00
parent 059b360d03
commit ba140017cb
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6
3 changed files with 3 additions and 7 deletions

View File

@ -41,7 +41,7 @@
<godfather.core.ver>0.0.59-SNAPSHOT</godfather.core.ver> <godfather.core.ver>0.0.59-SNAPSHOT</godfather.core.ver>
<!-- https://mvnrepository.com/artifact/org.telegram/telegrambots --> <!-- https://mvnrepository.com/artifact/org.telegram/telegrambots -->
<telegrambots.ver>6.3.0</telegrambots.ver> <telegrambots.ver>6.5.0</telegrambots.ver>
<!-- https://mvnrepository.com/artifact/io.smallrye.reactive/smallrye-mutiny-vertx-core --> <!-- https://mvnrepository.com/artifact/io.smallrye.reactive/smallrye-mutiny-vertx-core -->
<smallrye.mutiny.vertx.core.version>2.30.1</smallrye.mutiny.vertx.core.version> <smallrye.mutiny.vertx.core.version>2.30.1</smallrye.mutiny.vertx.core.version>

View File

@ -1,7 +1,6 @@
package dev.struchkov.godfather.telegram.simple.core; package dev.struchkov.godfather.telegram.simple.core;
import dev.struchkov.godfather.main.domain.content.ChatMail; import dev.struchkov.godfather.main.domain.content.ChatMail;
import dev.struchkov.godfather.simple.context.service.PersonSettingService;
import dev.struchkov.godfather.simple.core.GeneralAutoResponder; import dev.struchkov.godfather.simple.core.GeneralAutoResponder;
import dev.struchkov.godfather.simple.core.service.StorylineService; import dev.struchkov.godfather.simple.core.service.StorylineService;
@ -13,10 +12,9 @@ import dev.struchkov.godfather.simple.core.service.StorylineService;
public class ChatMailAutoresponderTelegram extends GeneralAutoResponder<ChatMail> { public class ChatMailAutoresponderTelegram extends GeneralAutoResponder<ChatMail> {
public ChatMailAutoresponderTelegram( public ChatMailAutoresponderTelegram(
PersonSettingService personSettingService,
StorylineService<ChatMail> storyLineService StorylineService<ChatMail> storyLineService
) { ) {
super(personSettingService, storyLineService); super(storyLineService);
} }
} }

View File

@ -1,7 +1,6 @@
package dev.struchkov.godfather.telegram.simple.core; package dev.struchkov.godfather.telegram.simple.core;
import dev.struchkov.godfather.main.domain.content.Mail; import dev.struchkov.godfather.main.domain.content.Mail;
import dev.struchkov.godfather.simple.context.service.PersonSettingService;
import dev.struchkov.godfather.simple.core.GeneralAutoResponder; import dev.struchkov.godfather.simple.core.GeneralAutoResponder;
import dev.struchkov.godfather.simple.core.service.StorylineService; import dev.struchkov.godfather.simple.core.service.StorylineService;
@ -13,10 +12,9 @@ import dev.struchkov.godfather.simple.core.service.StorylineService;
public class MailAutoresponderTelegram extends GeneralAutoResponder<Mail> { public class MailAutoresponderTelegram extends GeneralAutoResponder<Mail> {
public MailAutoresponderTelegram( public MailAutoresponderTelegram(
PersonSettingService personSettingService,
StorylineService<Mail> storyLineService StorylineService<Mail> storyLineService
) { ) {
super(personSettingService, storyLineService); super(storyLineService);
} }
} }