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

@@ -22,7 +22,7 @@ public class CacheControl {
NONE, PUBLIC, PRIVATE;
}
public final static CacheControl NONE = new CacheControl(Type.NONE, 0, null);
public static final CacheControl NONE = new CacheControl(Type.NONE, 0, null);
public static CacheControl PUBLIC(long age, TimeUnit unit) {
return new CacheControl(Type.PUBLIC, age, unit);