Skip to content

Commit ecc395a

Browse files
committed
Fix the build
Change-Id: Ib4ea7df5459d025903d00361eb0e9477be299c85
1 parent 50c69b5 commit ecc395a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ protected void updateRecentsPanel() {
249249

250250
}
251251

252-
H createHandler() {
252+
protected H createHandler() {
253253
return new H();
254254
}
255255

packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ public void disable(int state) {
10381038
}
10391039

10401040
@Override
1041-
BaseStatusBar.H createHandler() {
1041+
protected BaseStatusBar.H createHandler() {
10421042
return new PhoneStatusBar.H();
10431043
}
10441044

packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ public void onBarHeightChanged(int height) {
696696
}
697697

698698
@Override
699-
BaseStatusBar.H createHandler() {
699+
protected BaseStatusBar.H createHandler() {
700700
return new TabletStatusBar.H();
701701
}
702702

0 commit comments

Comments
 (0)