Skip to content

Commit

Permalink
Fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynovikov committed Feb 2, 2024
1 parent 66e353a commit 6e1896a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/src/main/java/mobi/maptrek/util/ProgressHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import androidx.annotation.CallSuper;
import android.view.View;
Expand All @@ -32,12 +33,12 @@ public class ProgressHandler extends Handler implements ProgressListener {
private final static int UPDATE_PROGRESS = 2;
protected final static int STOP_PROGRESS = 3;

private ProgressBar mProgressBar;
private final ProgressBar mProgressBar;
private int mStep;
private int mProgress;

public ProgressHandler(ProgressBar progressBar) {
super();
super(Looper.getMainLooper());
mProgressBar = progressBar;
}

Expand Down

0 comments on commit 6e1896a

Please sign in to comment.