More final keywords

This commit is contained in:
Daniel Martí 2015-04-06 17:52:34 +02:00
parent 14a38f2f50
commit dc86129cca
2 changed files with 4 additions and 4 deletions

View File

@ -185,7 +185,7 @@ public class ApkProvider extends FDroidProvider {
private static final UriMatcher matcher = new UriMatcher(-1);
public static Map<String,String> REPO_FIELDS = new HashMap<>();
public static final Map<String,String> REPO_FIELDS = new HashMap<>();
static {
REPO_FIELDS.put(DataColumns.REPO_VERSION, RepoProvider.DataColumns.VERSION);

View File

@ -52,9 +52,9 @@ public class LocalRepoService extends Service {
private JmDNS jmdns;
private ServiceInfo pairService;
public static int START = 1111111;
public static int STOP = 12345678;
public static int RESTART = 87654;
public static final int START = 1111111;
public static final int STOP = 12345678;
public static final int RESTART = 87654;
final Messenger messenger = new Messenger(new StartStopHandler(this));