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 @@ -64,21 +64,21 @@
import org.w3c.dom.css.CSSStyleDeclaration;

public class ThemeEngine implements IThemeEngine {
private List<Theme> themes = new ArrayList<>();
private List<CSSEngine> cssEngines = new ArrayList<>();
private final List<Theme> themes = new ArrayList<>();
private final List<CSSEngine> cssEngines = new ArrayList<>();

// kept for theme notifications only
private Display display;
private final Display display;

private ITheme currentTheme;

private List<String> globalStyles = new ArrayList<>();
private List<IResourceLocator> globalSourceLocators = new ArrayList<>();
private final List<String> globalStyles = new ArrayList<>();
private final List<IResourceLocator> globalSourceLocators = new ArrayList<>();

private HashMap<String, List<String>> stylesheets = new HashMap<>();
private HashMap<String, List<String>> stylesheetPluginExtensions = new HashMap<>();
private HashMap<String, List<String>> modifiedStylesheets = new HashMap<>();
private HashMap<String, List<IResourceLocator>> sourceLocators = new HashMap<>();
private final HashMap<String, List<String>> stylesheets = new HashMap<>();
private final HashMap<String, List<String>> stylesheetPluginExtensions = new HashMap<>();
private final HashMap<String, List<String>> modifiedStylesheets = new HashMap<>();
private final HashMap<String, List<IResourceLocator>> sourceLocators = new HashMap<>();

private static final String THEMEID_KEY = "themeid";

Expand Down
Loading