| Conditions | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | package net.labymod.serverapi.bungee; |
||
| 18 | public BungeecordLabyModConfig( File file ) { |
||
| 19 | super( file ); |
||
| 20 | |||
| 21 | // Creating the file if it doesn't exist |
||
| 22 | if ( !file.exists() ) |
||
| 23 | try { |
||
| 24 | file.createNewFile(); |
||
|
|
|||
| 25 | } catch ( IOException e ) { |
||
| 26 | e.printStackTrace(); |
||
| 27 | } |
||
| 28 | |||
| 29 | // Initializing the config |
||
| 30 | init( file ); |
||
| 31 | } |
||
| 72 |