diff options
| author | Camil Staps | 2015-04-18 01:04:19 +0200 |
|---|---|---|
| committer | Camil Staps | 2015-04-18 01:04:19 +0200 |
| commit | a62773f7dad7d62208b174b35fcde59c85db3913 (patch) | |
| tree | 7359d0e3d60a55d9c053cb88e0e27b34d10ebadc /Week9/src/com/camilstaps/shop/Database.java | |
| parent | Week9 (diff) | |
Cleanup, checked UML class diagram, added diagram to TeX
Diffstat (limited to 'Week9/src/com/camilstaps/shop/Database.java')
| -rw-r--r-- | Week9/src/com/camilstaps/shop/Database.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Week9/src/com/camilstaps/shop/Database.java b/Week9/src/com/camilstaps/shop/Database.java index b04eaf5..8344bca 100644 --- a/Week9/src/com/camilstaps/shop/Database.java +++ b/Week9/src/com/camilstaps/shop/Database.java @@ -37,6 +37,9 @@ public class Database { /** * Files to store the database + * Considering backups, it's nicer to have different objects stored in + * different files, so that if the Orders file breaks, we still have the + * Users, etc. */ private final File FILE_DB = new File("./db"); private final File FILE_USERS = new File("./db/users.db"); |
