Skip to content

Commit 9006d20

Browse files
authored
Remove duplicate & missing commas (flutter#96844)
1 parent bead343 commit 9006d20

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

packages/flutter/lib/src/material/input_decorator.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3592,8 +3592,6 @@ class InputDecoration {
35923592
fillColor,
35933593
focusColor,
35943594
hoverColor,
3595-
border,
3596-
enabled,
35973595
prefixIcon,
35983596
prefixIconColor,
35993597
prefix,

packages/flutter/lib/src/material/popup_menu_theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class PopupMenuThemeData with Diagnosticable {
111111
elevation,
112112
textStyle,
113113
enableFeedback,
114-
mouseCursor
114+
mouseCursor,
115115
);
116116
}
117117

packages/flutter/lib/src/material/tooltip_theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class TooltipThemeData with Diagnosticable {
169169
waitDuration,
170170
showDuration,
171171
triggerMode,
172-
enableFeedback
172+
enableFeedback,
173173
);
174174
}
175175

0 commit comments

Comments
 (0)