mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
リファクタリング
This commit is contained in:
parent
c54967f016
commit
dfe5c36e9e
|
@ -34,17 +34,17 @@ public class DocumentProcessorImpl implements DocumentProcessor{
|
|||
private XmlMetaModel xmlMetaModel;
|
||||
|
||||
// Injection
|
||||
@Inject
|
||||
FileManagerFactory fileManagerFactory;
|
||||
private FileManagerFactory fileManagerFactory;
|
||||
|
||||
@Inject
|
||||
LacertaLogger logger;
|
||||
private LacertaLogger logger;
|
||||
|
||||
@Inject
|
||||
XmlMetaParser xmlMetaParser;
|
||||
private XmlMetaParser xmlMetaParser;
|
||||
|
||||
@AssistedInject
|
||||
public DocumentProcessorImpl(@Assisted DocumentDetail documentDetail) {
|
||||
public DocumentProcessorImpl(FileManagerFactory fileManagerFactory, LacertaLogger logger, XmlMetaParser xmlMetaParser, @Assisted DocumentDetail documentDetail) {
|
||||
this.fileManagerFactory = fileManagerFactory;
|
||||
this.logger = logger;
|
||||
this.xmlMetaParser = xmlMetaParser;
|
||||
if (documentDetail == null) {
|
||||
throw new IllegalArgumentException("documentDetail must not be null");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user