mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
util.jar should be compiled with 1.5 target level since it's used in groovyc
This commit is contained in:
Generated
+2
@@ -44,6 +44,8 @@
|
||||
<module name="remote-servers-agent-rt" target="1.5" />
|
||||
<module name="testng_rt" target="1.5" />
|
||||
<module name="ui-designer-jps-plugin" target="1.6" />
|
||||
<module name="util" target="1.5" />
|
||||
<module name="util-rt" target="1.5" />
|
||||
</bytecodeTargetLevel>
|
||||
</component>
|
||||
<component name="EclipseCompilerSettings">
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
1.6 =>
|
||||
|
||||
1.3 => lib/idea_rt.jar
|
||||
1.5 => lib/util.jar
|
||||
|
||||
1.7 => lib/fxHelpBrowser.jar
|
||||
1.7 => lib/optimizedFileManager.jar
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
|
||||
@@ -73,7 +73,6 @@ public class ClassPath {
|
||||
if (!FileUtil.ensureCanCreateFile(orderFile)) return;
|
||||
ourOrder = new PrintStream(new FileOutputStream(orderFile, true));
|
||||
ShutDownTracker.getInstance().registerShutdownTask(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
ourOrder.close();
|
||||
System.out.println(ourOrderSize);
|
||||
@@ -304,12 +303,10 @@ public class ClassPath {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasMoreElements() {
|
||||
return next();
|
||||
}
|
||||
|
||||
@Override
|
||||
public URL nextElement() {
|
||||
if (!next()) {
|
||||
throw new NoSuchElementException();
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module relativePaths="true" type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
|
||||
Reference in New Issue
Block a user