()
| 45 | private DaoQueryCache<Server> cache; |
| 46 | |
| 47 | private Servers() throws Exception { |
| 48 | database = Database.getInstance(); |
| 49 | dao = database.createTable(Server.class, this); |
| 50 | cache = new DaoQueryCache(); |
| 51 | } |
| 52 | |
| 53 | public void create(Server server) throws Exception { |
| 54 | dao.createIfNotExists(server); |
nothing calls this directly
no test coverage detected