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;
String author;
String defaultBranch;
Path fullPath;
// Getter
public DocumentMeta getMeta() {
@ -32,9 +30,6 @@ public class DocumentDetail {
return defaultBranch;
}
public Path getFullPath() {
return fullPath;
}
// Setter
@ -54,8 +49,5 @@ public class DocumentDetail {
this.defaultBranch = defaultBranch;
}
public void setFullPath(Path fullPath) {
this.fullPath = fullPath;
}
}