Fix the build

Change-Id: Ib4ea7df5459d025903d00361eb0e9477be299c85
This commit is contained in:
Michael Jurka
2012-03-30 05:31:46 -07:00
parent 50c69b5d8a
commit ecc395a510
3 changed files with 3 additions and 3 deletions

View File

@@ -249,7 +249,7 @@ public abstract class BaseStatusBar extends SystemUI implements
}
H createHandler() {
protected H createHandler() {
return new H();
}

View File

@@ -1038,7 +1038,7 @@ public class PhoneStatusBar extends BaseStatusBar {
}
@Override
BaseStatusBar.H createHandler() {
protected BaseStatusBar.H createHandler() {
return new PhoneStatusBar.H();
}

View File

@@ -696,7 +696,7 @@ public class TabletStatusBar extends BaseStatusBar implements
}
@Override
BaseStatusBar.H createHandler() {
protected BaseStatusBar.H createHandler() {
return new TabletStatusBar.H();
}