aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-03-03 07:10:44 +0000
committerGravatar Yue Gan <yueg@google.com>2017-03-03 10:39:31 +0000
commit6ac3a7c786e3f5f965fafc3f789d61241f057f59 (patch)
treece7acbb8f6ef3f8ea23a60a4edf3f3f3273ab23a /src
parentcf0af4c059bdf1d1cc54c9c1a1315696a7472dc4 (diff)
Global cleanup change.
-- PiperOrigin-RevId: 149085169 MOS_MIGRATED_REVID=149085169
Diffstat (limited to 'src')
-rw-r--r--src/tools/xcode-common/java/com/google/devtools/build/xcode/common/Platform.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tools/xcode-common/java/com/google/devtools/build/xcode/common/Platform.java b/src/tools/xcode-common/java/com/google/devtools/build/xcode/common/Platform.java
index 5ba089bb80..9621d10362 100644
--- a/src/tools/xcode-common/java/com/google/devtools/build/xcode/common/Platform.java
+++ b/src/tools/xcode-common/java/com/google/devtools/build/xcode/common/Platform.java
@@ -16,9 +16,7 @@ package com.google.devtools.build.xcode.common;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
-
import java.util.Locale;
-import java.util.Set;
/**
* An enum that can be used to distinguish between various apple platforms.
@@ -28,8 +26,8 @@ public enum Platform {
IOS_SIMULATOR("iPhoneSimulator"),
MACOSX("MacOSX");
- private static final Set<String> IOS_SIMULATOR_ARCHS = ImmutableSet.of("i386", "x86_64");
- private static final Set<String> IOS_DEVICE_ARCHS =
+ private static final ImmutableSet<String> IOS_SIMULATOR_ARCHS = ImmutableSet.of("i386", "x86_64");
+ private static final ImmutableSet<String> IOS_DEVICE_ARCHS =
ImmutableSet.of("armv6", "armv7", "armv7s", "arm64");
private final String nameInPlist;