Migrate to IDEA 130.1225
Fix the class loader to generate proper resource URLs: we used to have "!" as a JAR separator, but the correct one is "!/", according to the docs here: http://docs.oracle.com/javase/6/docs/api/java/net/JarURLConnection.html
This commit is contained in:
@@ -191,7 +191,7 @@ public class ClassPreloadingUtils {
|
||||
|
||||
public URL getURL() {
|
||||
try {
|
||||
String path = "file:" + jarFile + "!" + resourceName;
|
||||
String path = "file:" + jarFile + "!/" + resourceName;
|
||||
return new URL("jar", null, 0, path, new URLStreamHandler() {
|
||||
@Override
|
||||
protected URLConnection openConnection(URL u) throws IOException {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<project name="Update Dependencies" default="update">
|
||||
<property name="jb.buildserver.build.id" value="1968791"/>
|
||||
<property name="public.buildserver.build.id" value="83470"/>
|
||||
<property name="jb.buildserver.build.id" value="1973992"/>
|
||||
<property name="public.buildserver.build.id" value="86185"/>
|
||||
<property name="idea.archive.name" value="ideaIC-130.SNAPSHOT.win.zip"/>
|
||||
|
||||
<property name="idea.sdk.fetch.needed" value="true"/>
|
||||
|
||||
Reference in New Issue
Block a user