Fix test / use new DataSource method / add space before keywords
This commit is contained in:
@@ -270,10 +270,9 @@ public class CacheDataSource implements DataSource {
|
||||
|
||||
@Override
|
||||
public void refreshCache(String playerName) {
|
||||
if (cachedAuths.getIfPresent(playerName) == null) {
|
||||
return;
|
||||
if (cachedAuths.getIfPresent(playerName) != null) {
|
||||
cachedAuths.refresh(playerName);
|
||||
}
|
||||
cachedAuths.refresh(playerName);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user