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:
parent
78af79cd4f
commit
6ce94a22d3
@ -71,7 +71,6 @@ import java.util.zip.Adler32;
|
||||
|
||||
public final class Utils {
|
||||
|
||||
@SuppressWarnings("UnusedDeclaration")
|
||||
private static final String TAG = "Utils";
|
||||
|
||||
private static final int BUFFER_SIZE = 4096;
|
||||
|
@ -227,9 +227,6 @@ public class SwapAppsView extends ListView implements
|
||||
|
||||
private class AppListAdapter extends CursorAdapter {
|
||||
|
||||
@SuppressWarnings("UnusedDeclaration")
|
||||
private static final String TAG = "AppListAdapter";
|
||||
|
||||
private class ViewHolder {
|
||||
|
||||
private final LocalBroadcastManager localBroadcastManager;
|
||||
|
@ -656,9 +656,6 @@ public class SwapWorkflowActivity extends AppCompatActivity {
|
||||
public static final int TYPE_COMPLETE = 1;
|
||||
public static final int TYPE_ERROR = 2;
|
||||
|
||||
@SuppressWarnings("UnusedDeclaration")
|
||||
private static final String TAG = "UpdateAsyncTask";
|
||||
|
||||
@NonNull
|
||||
protected final Set<String> selectedApps;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user