Remove redundant 'final' modifiers

The 'final' modifier is redundant on private members, and
on members of 'final' classes.

Change-Id: Ib89f00f3c839cc58be26bc58a2acae8d095bcbc7
This commit is contained in:
David Pursehouse
2016-04-12 10:45:26 +09:00
parent cbc52bd366
commit e7996de77f
15 changed files with 68 additions and 68 deletions

View File

@@ -21,11 +21,11 @@ public final class HostPlatform {
private static final boolean win32 = computeWin32();
/** @return true if this JVM is running on a Windows platform. */
public static final boolean isWin32() {
public static boolean isWin32() {
return win32;
}
private static final boolean computeWin32() {
private static boolean computeWin32() {
final String osDotName =
AccessController.doPrivileged(new PrivilegedAction<String>() {
@Override