We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5718e39 commit ab8e35fCopy full SHA for ab8e35f
src/main/java/me/axeno/hommr/managers/DatabaseManager.java
@@ -60,11 +60,7 @@ public void init() {
60
61
homeDao = DaoManager.createDao(connectionSource, Home.class);
62
63
- try {
64
- TableUtils.createTableIfNotExists(connectionSource, Home.class);
65
- } catch (SQLException e) {
66
- Hommr.getInstance().getLogger().log(java.util.logging.Level.SEVERE, "Failed to ensure database table", e);
67
- }
+ TableUtils.createTableIfNotExists(connectionSource, Home.class);
68
69
} catch (SQLException e) {
70
Hommr.getInstance().getLogger().log(java.util.logging.Level.SEVERE, "Failed to initialize database", e);
0 commit comments