Clean up final static to be static final

Change-Id: I3abd97e25060544ffc379048e49ebd4f102d9292
This commit is contained in:
David Ostrovsky
2013-08-19 07:59:04 +02:00
parent 1cdfa1fdc8
commit 33653f9216
8 changed files with 19 additions and 19 deletions

View File

@@ -46,10 +46,10 @@ import java.util.Arrays;
import java.util.Set;
public class PushOneCommit {
public final static String SUBJECT = "test commit";
public static final String SUBJECT = "test commit";
private final static String FILE_NAME = "a.txt";
private final static String FILE_CONTENT = "some content";
private static final String FILE_NAME = "a.txt";
private static final String FILE_CONTENT = "some content";
private final ReviewDb db;
private final PersonIdent i;