mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
fullPathは重複する内容なので削除
This commit is contained in:
parent
54aed8ec6b
commit
636affe312
|
@ -12,8 +12,6 @@ public class DocumentDetail {
|
||||||
DocumentPath path;
|
DocumentPath path;
|
||||||
String author;
|
String author;
|
||||||
String defaultBranch;
|
String defaultBranch;
|
||||||
Path fullPath;
|
|
||||||
|
|
||||||
// Getter
|
// Getter
|
||||||
|
|
||||||
public DocumentMeta getMeta() {
|
public DocumentMeta getMeta() {
|
||||||
|
@ -32,9 +30,6 @@ public class DocumentDetail {
|
||||||
return defaultBranch;
|
return defaultBranch;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Path getFullPath() {
|
|
||||||
return fullPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Setter
|
// Setter
|
||||||
|
|
||||||
|
@ -43,7 +38,7 @@ public class DocumentDetail {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPath(DocumentPath path) {
|
public void setPath(DocumentPath path) {
|
||||||
this.path = path;
|
this.path = path;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAuthor(String author) {
|
public void setAuthor(String author) {
|
||||||
|
@ -54,8 +49,5 @@ public class DocumentDetail {
|
||||||
this.defaultBranch = defaultBranch;
|
this.defaultBranch = defaultBranch;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFullPath(Path fullPath) {
|
|
||||||
this.fullPath = fullPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user