mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
修正漏れ
This commit is contained in:
parent
e54cc07e9d
commit
5bb2f0d387
|
@ -51,7 +51,7 @@ public class DocumentProcessorImpl implements DocumentProcessor{
|
|||
public void init() {
|
||||
logger.debug("init", "called");
|
||||
// Init Variables
|
||||
this.documentRootPath = documentDetail.getPath().getFullPath();
|
||||
this.documentRootPath = this.documentDetail.getPath().getFullPath();
|
||||
logger.debug("init", "documentRootPath: " + this.documentRootPath);
|
||||
|
||||
this.fileManager = fileManagerFactory.create(this.documentRootPath); //Initialize FileManager
|
||||
|
@ -75,10 +75,10 @@ public class DocumentProcessorImpl implements DocumentProcessor{
|
|||
logger.debug("init", "meta.xml not found");
|
||||
xmlMetaModel = new XmlMetaModel();
|
||||
|
||||
xmlMetaModel.setTitle(documentDetail.getMeta().getTitle());
|
||||
xmlMetaModel.setAuthor(documentDetail.getAuthor());
|
||||
xmlMetaModel.setTitle(this.documentDetail.getMeta().getTitle());
|
||||
xmlMetaModel.setAuthor(this.documentDetail.getAuthor());
|
||||
xmlMetaModel.setDescription(""); // FIXME-rca:
|
||||
xmlMetaModel.setDefaultBranch(documentDetail.getDefaultBranch());
|
||||
xmlMetaModel.setDefaultBranch(this.documentDetail.getDefaultBranch());
|
||||
xmlMetaModel.setPages(new ArrayList<>());
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue
Block a user