Skip to content

Commit 29d8d26

Browse files
author
Jeff Brown
committed
Fix build for some javac compilers.
It seems some compiler versions don't like trailing commas in attribute lists. Weird. Change-Id: I3a05f49a2e94f63fe1662d14c1d8a7ee249d8a16
1 parent 402206b commit 29d8d26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/java/android/view/WindowManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public static class LayoutParams extends ViewGroup.LayoutParams
180180
@ViewDebug.IntToString(from = TYPE_HIDDEN_NAV_CONSUMER, to = "TYPE_HIDDEN_NAV_CONSUMER"),
181181
@ViewDebug.IntToString(from = TYPE_DREAM, to = "TYPE_DREAM"),
182182
@ViewDebug.IntToString(from = TYPE_NAVIGATION_BAR_PANEL, to = "TYPE_NAVIGATION_BAR_PANEL"),
183-
@ViewDebug.IntToString(from = TYPE_DISPLAY_OVERLAY, to = "TYPE_DISPLAY_OVERLAY"),
183+
@ViewDebug.IntToString(from = TYPE_DISPLAY_OVERLAY, to = "TYPE_DISPLAY_OVERLAY")
184184
})
185185
public int type;
186186

0 commit comments

Comments
 (0)