Fixed a lot of logic, replaced Files with Documents

This commit is contained in:
2023-10-17 16:48:44 +03:00
parent 3589237e33
commit 15887bd1b6
10 changed files with 128 additions and 37 deletions

View File

@@ -6,4 +6,9 @@ public class CodeFile extends Document{
public CodeFile(Path path) {
super(path);
}
@Override
public String getInfo() {
return "CODE";
}
}