Skip to content

Commit 57699a1

Browse files
mlopezFCjavier-godoy
authored andcommitted
chore: make internal component holders final
1 parent 80a69f5 commit 57699a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/flowingcode/addons/applayout/AppLayout.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
@CssImport(value="./styles/applayout-styles.css", themeFor = "fc-applayout")
4646
public class AppLayout extends Div implements PageConfigurator {
4747

48-
private List<Component> menuItems = new ArrayList<>();
49-
private List<Component> toolbarComponents = new ArrayList<>();
48+
private final List<Component> menuItems = new ArrayList<>();
49+
private final List<Component> toolbarComponents = new ArrayList<>();
5050

5151
public AppLayout(String title) {
5252
this(null, title, null);

0 commit comments

Comments
 (0)