Remove a few unused variables
This commit is contained in:
parent
4a007698a6
commit
1d225912f4
@ -1262,11 +1262,9 @@ public class AppDetails extends ActionBarActivity implements ProgressListener, A
|
|||||||
public static class AppDetailsHeaderFragment extends Fragment {
|
public static class AppDetailsHeaderFragment extends Fragment {
|
||||||
|
|
||||||
private AppDetailsData data;
|
private AppDetailsData data;
|
||||||
protected final Preferences prefs;
|
|
||||||
protected final DisplayImageOptions displayImageOptions;
|
protected final DisplayImageOptions displayImageOptions;
|
||||||
|
|
||||||
public AppDetailsHeaderFragment() {
|
public AppDetailsHeaderFragment() {
|
||||||
prefs = Preferences.get();
|
|
||||||
displayImageOptions = new DisplayImageOptions.Builder()
|
displayImageOptions = new DisplayImageOptions.Builder()
|
||||||
.cacheInMemory(true)
|
.cacheInMemory(true)
|
||||||
.cacheOnDisk(true)
|
.cacheOnDisk(true)
|
||||||
|
@ -12,8 +12,6 @@ import java.util.Date;
|
|||||||
|
|
||||||
public class Repo extends ValueObject {
|
public class Repo extends ValueObject {
|
||||||
|
|
||||||
private static final String TAG = "fdroid.Repo";
|
|
||||||
|
|
||||||
public static final int VERSION_DENSITY_SPECIFIC_ICONS = 11;
|
public static final int VERSION_DENSITY_SPECIFIC_ICONS = 11;
|
||||||
|
|
||||||
protected long id;
|
protected long id;
|
||||||
|
@ -4,8 +4,6 @@ import android.database.Cursor;
|
|||||||
|
|
||||||
abstract class ValueObject {
|
abstract class ValueObject {
|
||||||
|
|
||||||
private static final String TAG = "fdroid.ValueObject";
|
|
||||||
|
|
||||||
protected void checkCursorPosition(Cursor cursor) throws IllegalArgumentException {
|
protected void checkCursorPosition(Cursor cursor) throws IllegalArgumentException {
|
||||||
if (cursor.getPosition() == -1) {
|
if (cursor.getPosition() == -1) {
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user