fullPathは重複する内容なので削除

This commit is contained in:
ろむねこ 2023-12-14 12:04:41 +09:00
parent 54aed8ec6b
commit 636affe312
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -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;
}
} }