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