Skip to content

Commit 49043ae

Browse files
committed
⚡️ final
1 parent ca69f93 commit 49043ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/io/flutter/actions/DeviceSelectorAction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public Dimension getPreferredSize() {
123123
}
124124
else {
125125
// Fallback: use the default mobile icon size when the component is not fully initialized
126-
Icon defaultIcon = DEFAULT_DEVICE_ICON;
126+
final Icon defaultIcon = DEFAULT_DEVICE_ICON;
127127
width += defaultIcon.getIconWidth();
128128
height = Math.max(height, defaultIcon.getIconHeight());
129129
}
@@ -150,7 +150,7 @@ public Dimension getPreferredSize() {
150150
}
151151
else {
152152
// Fallback: use the default arrow icon size
153-
Icon defaultArrow = DEFAULT_ARROW_ICON;
153+
final Icon defaultArrow = DEFAULT_ARROW_ICON;
154154
width += defaultArrow.getIconWidth();
155155
height = Math.max(height, defaultArrow.getIconHeight());
156156
}

0 commit comments

Comments
 (0)