# HG changeset patch # User nolith # Date 1181893038 -7200 # Branch trunk # Node ID 5f24ee46836c925571045892bd9958b2310c8bd6 # Parent f0aa5d9d40e1b509746afb21bd3e4f0977025872 [svn] [CHANGE] now Java5 is the default JVM diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 .classpath --- a/.classpath Thu Jun 14 18:41:45 2007 +0200 +++ b/.classpath Fri Jun 15 09:37:18 2007 +0200 @@ -1,9 +1,9 @@ - - + + diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 .externalToolBuilders/PortableNotary build.xml [Builder].launch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.externalToolBuilders/PortableNotary build.xml [Builder].launch Fri Jun 15 09:37:18 2007 +0200 @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 .project --- a/.project Thu Jun 14 18:41:45 2007 +0200 +++ b/.project Fri Jun 15 09:37:18 2007 +0200 @@ -10,6 +10,16 @@ + + org.eclipse.ui.externaltools.ExternalToolBuilder + full,incremental, + + + LaunchConfigHandle + <project>/.externalToolBuilders/PortableNotary build.xml [Builder].launch + + + org.eclipse.jem.workbench.JavaEMFNature diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 .settings/org.eclipse.jdt.core.prefs --- a/.settings/org.eclipse.jdt.core.prefs Thu Jun 14 18:41:45 2007 +0200 +++ b/.settings/org.eclipse.jdt.core.prefs Fri Jun 15 09:37:18 2007 +0200 @@ -1,12 +1,12 @@ -#Tue Jun 05 19:35:00 CEST 2007 +#Fri Jun 15 09:23:50 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.compliance=1.5 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.6 +org.eclipse.jdt.core.compiler.source=1.5 diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 .settings/org.eclipse.jdt.ui.prefs --- a/.settings/org.eclipse.jdt.ui.prefs Thu Jun 14 18:41:45 2007 +0200 +++ b/.settings/org.eclipse.jdt.ui.prefs Fri Jun 15 09:37:18 2007 +0200 @@ -1,4 +1,4 @@ -#Thu Jun 14 10:07:53 CEST 2007 +#Fri Jun 15 09:34:40 CEST 2007 eclipse.preferences.version=1 internal.default.compliance=default -org.eclipse.jdt.ui.text.custom_code_templates= +org.eclipse.jdt.ui.text.custom_code_templates= diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 build.xml --- a/build.xml Thu Jun 14 18:41:45 2007 +0200 +++ b/build.xml Fri Jun 15 09:37:18 2007 +0200 @@ -2,7 +2,7 @@ - + @@ -11,19 +11,20 @@ - + - - + + - + - + + @@ -60,7 +61,7 @@ - + diff -r f0aa5d9d40e1b509746afb21bd3e4f0977025872 -r 5f24ee46836c925571045892bd9958b2310c8bd6 src/org/abisso/PortableNotary/PortableNotary.java --- a/src/org/abisso/PortableNotary/PortableNotary.java Thu Jun 14 18:41:45 2007 +0200 +++ b/src/org/abisso/PortableNotary/PortableNotary.java Fri Jun 15 09:37:18 2007 +0200 @@ -102,14 +102,14 @@ if (line.hasOption("p")) { //$NON-NLS-1$ //[ifdef] - password = new String(System.console().readPassword( - Messages.getString("PortableNotary.EnterPassword"))); //$NON-NLS-1$ - if (save) - pref.setKeystore_pass(password); + System.err.println(Messages.getString("PortableNotary.RequireJava6")); //$NON-NLS-1$ + System.exit(LEGACY_JVM); //[enddef] /* //[enddef] - System.err.println(Messages.getString("PortableNotary.RequireJava6")); //$NON-NLS-1$ - System.exit(LEGACY_JVM); + password = new String(System.console().readPassword( + Messages.getString("PortableNotary.EnterPassword"))); //$NON-NLS-1$ + if (save) + pref.setKeystore_pass(password); //[ifdef] */ }