mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-22 21:55:39 +00:00
Code Cleanup
This commit is contained in:
+1
-1
@@ -1373,7 +1373,7 @@ public class UserStoreImpl implements UserStore {
|
||||
final Map<String, T> result = new HashMap<>();
|
||||
for (Entry<String, Map<String, Object>> userWithPreferences : preferenceObjects.entrySet()) {
|
||||
final Map<String, Object> userPreferences = userWithPreferences.getValue();
|
||||
Object userPreference = userPreferences.get(key);
|
||||
final Object userPreference = userPreferences.get(key);
|
||||
if(userPreference != null) {
|
||||
result.put(userWithPreferences.getKey(), (T) userPreference);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user