Clean up final static to be static final
Change-Id: I3abd97e25060544ffc379048e49ebd4f102d9292
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user