summaryrefslogtreecommitdiff
path: root/services/java/com/android/server/status/NotificationLinearLayout.java
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2010-05-02 16:28:15 -0700
committerJoe Onorato <joeo@android.com>2010-06-02 14:48:41 -0700
commit0cbda99f8721ad9b03ada04d2637fb75a2a0feca (patch)
tree99b716653b139e560223dfc764bfc9a746df7bb5 /services/java/com/android/server/status/NotificationLinearLayout.java
parent503007dd023668b1e45de948d3673e594d7f5a82 (diff)
The status bar draws its icons now.
Diffstat (limited to 'services/java/com/android/server/status/NotificationLinearLayout.java')
-rw-r--r--services/java/com/android/server/status/NotificationLinearLayout.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/services/java/com/android/server/status/NotificationLinearLayout.java b/services/java/com/android/server/status/NotificationLinearLayout.java
deleted file mode 100644
index 2fdf956fb901..000000000000
--- a/services/java/com/android/server/status/NotificationLinearLayout.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.server.status;
-
-import android.content.Context;
-import android.util.AttributeSet;
-import android.widget.LinearLayout;
-
-
-public class NotificationLinearLayout extends LinearLayout {
- public NotificationLinearLayout(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
-}
-