Skip to content

Commit

Permalink
[Cleanup] Minor fix.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 519997026
  • Loading branch information
pekingme committed Mar 28, 2023
1 parent cdda1fc commit dfbf4d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/java/com/google/android/material/appbar/AppBarLayout.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ public AppBarLayout(@NonNull Context context, @Nullable AttributeSet attrs, int
if (a.hasValue(R.styleable.AppBarLayout_expanded)) {
setExpanded(
a.getBoolean(R.styleable.AppBarLayout_expanded, false),
false, /* animate */
false /* force */);
/* animate */ false,
/* force */ false);
}

if (Build.VERSION.SDK_INT >= 21 && a.hasValue(R.styleable.AppBarLayout_elevation)) {
Expand Down

0 comments on commit dfbf4d9

Please sign in to comment.