Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-10-14 19:53:32 +0000
committerAlexander Kurtakov2019-10-14 19:53:32 +0000
commitb2476dd3863f3bc92dd3fd7a85618488f9356e35 (patch)
treea6bfd6d69df1c6f752617d47ea3c52d4c3c14427 /bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
parentb8ae716f906ebbf1990a6f209ed545700a876278 (diff)
downloadrt.equinox.framework-b2476dd3863f3bc92dd3fd7a85618488f9356e35.tar.gz
rt.equinox.framework-b2476dd3863f3bc92dd3fd7a85618488f9356e35.tar.xz
rt.equinox.framework-b2476dd3863f3bc92dd3fd7a85618488f9356e35.zip
Bug 552093 - Remove 32bit launcher code
Drop support in code. Change-Id: I91823ac9c762b9e4211b3ea5356f54ac56154675 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java')
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
index 034aa4878..19b826085 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
@@ -400,11 +400,8 @@ public class Main {
return arch;
}
String name = System.getProperty("os.arch");//$NON-NLS-1$
- // Map i386 architecture to x86
- if (name.equalsIgnoreCase(Constants.INTERNAL_ARCH_I386))
- return Constants.ARCH_X86;
// Map amd64 architecture to x86_64
- else if (name.equalsIgnoreCase(Constants.INTERNAL_AMD64))
+ if (name.equalsIgnoreCase(Constants.INTERNAL_AMD64))
return Constants.ARCH_X86_64;
return name;
@@ -993,9 +990,9 @@ public class Main {
URL[] result = getDevPath(url);
if (debug) {
System.out.println("Framework classpath:"); //$NON-NLS-1$
- for (URL devPath : result) {
- System.out.println(" " + devPath.toExternalForm()); //$NON-NLS-1$
- }
+ for (URL devPath : result) {
+ System.out.println(" " + devPath.toExternalForm()); //$NON-NLS-1$
+ }
}
return result;
}

Back to the top