diff options
| author | Siva Velusamy <vsiva@google.com> | 2011-10-10 14:26:50 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-10-10 14:26:50 -0700 |
| commit | bd1e21fefb54f4debdca6f399c96df49d2f4bcb1 (patch) | |
| tree | c17d12563ef08e8d885b2f13372837f7e29da8cc | |
| parent | 076229cba38b7e647de01036a2be0d1dcd0fe09c (diff) | |
| parent | 235d6998cd7538f3e1c845e18c63ffc189a6c637 (diff) | |
| download | platform_sdk-ics-mr0.tar.gz platform_sdk-ics-mr0.tar.bz2 platform_sdk-ics-mr0.zip | |
Merge "Remove non-actionable log statement."android-cts-4.0_r1android-4.0.2_r1android-4.0.1_r1.2android-4.0.1_r1.1android-4.0.1_r1ics-mr0-releaseics-mr0ics-factoryrom-2-release
| -rw-r--r-- | ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java b/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java index 35cef9634..d9188072a 100644 --- a/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java +++ b/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java @@ -18,7 +18,6 @@ package com.android.ddmuilib.logcat; import com.android.ddmlib.DdmConstants; import com.android.ddmlib.IDevice; -import com.android.ddmlib.Log; import com.android.ddmlib.Log.LogLevel; import com.android.ddmuilib.ITableFocusListener; import com.android.ddmuilib.ImageLoader; @@ -124,8 +123,6 @@ public final class LogCatPanel extends SelectionDependentPanel private static final int[] WEIGHTS_SHOW_FILTERS = new int[] {15, 85}; private static final int[] WEIGHTS_LOGCAT_ONLY = new int[] {0, 100}; - private static final String LOG_TAG = "LogCatPanel"; - private LogCatReceiver mReceiver; private IPreferenceStore mPrefStore; @@ -223,7 +220,6 @@ public final class LogCatPanel extends SelectionDependentPanel if (device == null) { // If the device is not working properly, getCurrentDevice() could return null. // In such a case, we don't launch logcat, nor switch the display. - Log.e(LOG_TAG, "Device selected, but getCurrentDevice() == null"); return; } |
