aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/AdtPlugin.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/AdtPlugin.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/AdtPlugin.java
index 9e17f0f..e08d7ea 100644
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/AdtPlugin.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/AdtPlugin.java
@@ -1197,14 +1197,13 @@ public class AdtPlugin extends AbstractUIPlugin implements ILogger {
}
private void openSdkManager() {
- // Windows only: open the standalone external SDK Manager since we know
+ // Open the standalone external SDK Manager since we know
// that ADT on Windows is bound to be locking some SDK folders.
- // Also when this is invoked becasue SdkManagerAction.run() fails, this
+ //
+ // Also when this is invoked because SdkManagerAction.run() fails, this
// test will fail and we'll fallback on using the internal one.
- if (SdkConstants.CURRENT_PLATFORM == SdkConstants.PLATFORM_WINDOWS) {
- if (SdkManagerAction.openExternalSdkManager()) {
- return;
- }
+ if (SdkManagerAction.openExternalSdkManager()) {
+ return;
}
// Otherwise open the regular SDK Manager bundled within ADT