summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andy Stadler <stadler@google.com> 2011-02-04 12:50:09 -0800
committer Andy Stadler <stadler@google.com> 2011-02-04 12:50:09 -0800
commit76324fcabecc1bd6977b3f6242efe65e60688319 (patch)
tree3a0deffeb123e1bbf5839f8c18f0b2f73bbbf08d
parent2f7fa835077db95c0dbc58f720ae062ab6120196 (diff)
Fix warnings
* wrong package vs. file path (this was an error in eclipse) * unused imports * unused variables (at least for now) Change-Id: Ic316e7e8586f75df5a048e98a21a65abf777deda
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java15
1 files changed, 6 insertions, 9 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java
index 5eafdc1f118a..9ac933f3721a 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java
@@ -14,28 +14,25 @@
* limitations under the License.
*/
-package com.android.systemui.statusbar.phone;
+package com.android.systemui.statusbar.tablet;
import android.content.Context;
-import android.content.res.TypedArray;
+import android.graphics.Canvas;
import android.util.AttributeSet;
-import android.util.Slog;
import android.view.View;
-import android.graphics.BitmapFactory;
-import android.graphics.Bitmap;
-import android.graphics.Paint;
-import android.graphics.Canvas;
public class PanelBackgroundView extends View {
+ /*
private Bitmap mTexture;
private Paint mPaint;
private int mTextureWidth;
private int mTextureHeight;
-
+ */
+
public PanelBackgroundView(Context context, AttributeSet attrs) {
super(context, attrs);
/*
- mTexture = BitmapFactory.decodeResource(getResources(),
+ mTexture = BitmapFactory.decodeResource(getResources(),
com.android.internal.R.drawable.status_bar_background);
mTextureWidth = mTexture.getWidth();
mTextureHeight = mTexture.getHeight();