aboutsummaryrefslogtreecommitdiffstats
path: root/archquery
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2010-01-29 13:53:40 -0800
committerXavier Ducrohet <xav@android.com>2010-01-29 17:51:06 -0800
commitf89bdfe5b20157a284bf374d4d2e067e3ae2b9d8 (patch)
treef98d6c2eccb2924c1d813126cecbfa69a1083f70 /archquery
parent5f2252290bb88c6552b28ea4b9f2fafae5a49610 (diff)
downloadsdk-f89bdfe5b20157a284bf374d4d2e067e3ae2b9d8.zip
sdk-f89bdfe5b20157a284bf374d4d2e067e3ae2b9d8.tar.gz
sdk-f89bdfe5b20157a284bf374d4d2e067e3ae2b9d8.tar.bz2
Fix https download for the standalone version of the SDK Updater
The problem was due to the launch script completely replacing java.ext.dirs preventing the VM from accessing the optional jce.jar package (Java Cryptography Extension). The launch script now queries the JVM for the current value of java.ext.dirs (using archquery) to append to it instead of replacing it. In order to do that, archquery.jar now outputs only the value of the queried system property instead of output "name=value" Bug: 2248892 Change-Id: If17d48e46529bebc1a25daf99f2748e9ec81a214
Diffstat (limited to 'archquery')
-rw-r--r--archquery/src/com/android/archquery/Main.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/archquery/src/com/android/archquery/Main.java b/archquery/src/com/android/archquery/Main.java
index c76cca1..030cfe5 100644
--- a/archquery/src/com/android/archquery/Main.java
+++ b/archquery/src/com/android/archquery/Main.java
@@ -47,7 +47,7 @@ public final class Main {
public static void main(String[] args) {
for (String arg : args) {
- System.out.println(String.format("%1$s: %2$s", arg, System.getProperty(arg)));
+ System.out.println(System.getProperty(arg));
}
if (args.length == 0) {