Never suppress UnusedDeclaration on TAG fields

Remove the ones that weren't used at all. They can be added back if
they're ever actually used. Moreover, one of them was even named
incorrectly.
This commit is contained in:
Daniel Martí 2016-05-05 11:07:40 +01:00
parent 78af79cd4f
commit 6ce94a22d3
3 changed files with 0 additions and 7 deletions

View File

@ -71,7 +71,6 @@ import java.util.zip.Adler32;
public final class Utils { public final class Utils {
@SuppressWarnings("UnusedDeclaration")
private static final String TAG = "Utils"; private static final String TAG = "Utils";
private static final int BUFFER_SIZE = 4096; private static final int BUFFER_SIZE = 4096;

View File

@ -227,9 +227,6 @@ public class SwapAppsView extends ListView implements
private class AppListAdapter extends CursorAdapter { private class AppListAdapter extends CursorAdapter {
@SuppressWarnings("UnusedDeclaration")
private static final String TAG = "AppListAdapter";
private class ViewHolder { private class ViewHolder {
private final LocalBroadcastManager localBroadcastManager; private final LocalBroadcastManager localBroadcastManager;

View File

@ -656,9 +656,6 @@ public class SwapWorkflowActivity extends AppCompatActivity {
public static final int TYPE_COMPLETE = 1; public static final int TYPE_COMPLETE = 1;
public static final int TYPE_ERROR = 2; public static final int TYPE_ERROR = 2;
@SuppressWarnings("UnusedDeclaration")
private static final String TAG = "UpdateAsyncTask";
@NonNull @NonNull
protected final Set<String> selectedApps; protected final Set<String> selectedApps;