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