summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/satellitedaemon/db/MySQL.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/openslx/satellitedaemon/db/MySQL.java')
-rw-r--r--src/main/java/org/openslx/satellitedaemon/db/MySQL.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/openslx/satellitedaemon/db/MySQL.java b/src/main/java/org/openslx/satellitedaemon/db/MySQL.java
index b4adaf6..e225d54 100644
--- a/src/main/java/org/openslx/satellitedaemon/db/MySQL.java
+++ b/src/main/java/org/openslx/satellitedaemon/db/MySQL.java
@@ -36,7 +36,7 @@ class MySQL
Properties properties = new Properties();
try {
// using "mysql.properties.example" for testing
- final BufferedInputStream stream = new BufferedInputStream( new FileInputStream( "config/mysql.properties.example" ) );
+ final BufferedInputStream stream = new BufferedInputStream( new FileInputStream( "config/mysql.properties" ) );
properties.load( stream );
stream.close();
} catch ( FileNotFoundException e ) {