Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ private static void fillSetting(String preferenceId, Object preferenceValue, Map
}

public Object findSettings(String[] sections) {
Map<String, Object> current = this;
Map<?, ?> current = this;
for (String section : sections) {
Object result = current.get(section);
if (result == null || !(result instanceof Map)) {
return null;
}
current = (Map<String, Object>) result;
current = (Map<?, ?>) result;
}
return current;
}
Expand Down
Loading