forked from CryLegend/AuthMeBridge
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from XXLuigiMario/master
Bugfixes
- Loading branch information
Showing
13 changed files
with
33 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
src/main/java/fr/xephi/authmebungee/bungeecord/config/BungeeSettingsProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
package fr.xephi.authmebungee.bungeecord.config; | ||
|
||
import fr.xephi.authmebungee.common.annotations.DataFolder; | ||
import fr.xephi.authmebungee.common.config.SettingsProvider; | ||
import java.io.File; | ||
import javax.inject.Inject; | ||
|
||
public class BungeeSettingsProvider extends SettingsProvider { | ||
|
||
BungeeSettingsProvider() { | ||
super(BungeeConfigProperties.class); | ||
@Inject | ||
public BungeeSettingsProvider(@DataFolder File dataFolder) { | ||
super(dataFolder, BungeeConfigProperties.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
src/main/java/fr/xephi/authmebungee/spigot/config/SpigotSettingsProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
package fr.xephi.authmebungee.spigot.config; | ||
|
||
import fr.xephi.authmebungee.common.annotations.DataFolder; | ||
import fr.xephi.authmebungee.common.config.SettingsProvider; | ||
import java.io.File; | ||
import javax.inject.Inject; | ||
|
||
public class SpigotSettingsProvider extends SettingsProvider { | ||
|
||
SpigotSettingsProvider() { | ||
super(SpigotConfigProperties.class); | ||
@Inject | ||
SpigotSettingsProvider(@DataFolder File dataFolder) { | ||
super(dataFolder, SpigotConfigProperties.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters