Skip to content

Commit

Permalink
🚿 Cleanup: Missing super call in BottomSheetContentController
Browse files Browse the repository at this point in the history
chrome/android/java/src/org/chromium/chrome/browser/widget/bottomsheet/BottomSheetContentController.java:244
  Overriding method should call `super.onFinishInflate`:
MissingSuperCall [warning]
    public void onFinishInflate() {
                ~~~~~~~~~~~~~~~

Breaks compilation for some local configurations

Bug: None
Change-Id: I11ebf94b4b28ba331478aa90e032712bb30389ad
Reviewed-on: https://chromium-review.googlesource.com/853863
Reviewed-by: Bernhard Bauer <bauerb@chromium.org>
Commit-Queue: Nicolas Dossou-Gbété <dgn@chromium.org>
Cr-Commit-Position: refs/heads/master@{#527622}
  • Loading branch information
Nicolas Dossou-gbete authored and Commit Bot committed Jan 8, 2018
1 parent 0229213 commit 7faa2e1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ public void destroy() {

@Override
public void onFinishInflate() {
super.onFinishInflate();
BrowserStartupController.get(LibraryProcessType.PROCESS_BROWSER)
.addStartupCompletedObserver(new BrowserStartupController.StartupCallback() {
@Override
Expand Down

0 comments on commit 7faa2e1

Please sign in to comment.