aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-03-11 21:01:53 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-03-11 21:01:53 +0100
commit893b5ea69b6c584d924c5d7fb5b1a6e5355295c4 (patch)
treecf3ca7b60417cb154258acf9956d26d7f1b3fc90
parent620616bf8a73ea78863a5507aff631799b3a7a2e (diff)
downloadlombok-893b5ea69b6c584d924c5d7fb5b1a6e5355295c4.tar.gz
lombok-893b5ea69b6c584d924c5d7fb5b1a6e5355295c4.tar.bz2
lombok-893b5ea69b6c584d924c5d7fb5b1a6e5355295c4.zip
startOnFirstThread is no longer necessary on modern JVMs on mac.
-rw-r--r--build.xml7
-rw-r--r--buildScripts/eclipse-debug-target.template2
2 files changed, 1 insertions, 8 deletions
diff --git a/build.xml b/build.xml
index 99960bd2..84e77883 100644
--- a/build.xml
+++ b/build.xml
@@ -274,18 +274,11 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<apt location="lib/build/spi.jar" />
</ivy:eclipsegen>
- <condition property="startOnFirstThread" value="-XstartOnFirstThread" else="">
- <os family="mac" />
- </condition>
-
<copy
file="buildScripts/eclipse-debug-target.template"
tofile="LombokizedEclipse.launch"
preservelastmodified="true"
overwrite="true">
- <filterset>
- <filter token="START_ON_FIRST_THREAD" value="${startOnFirstThread}" />
- </filterset>
</copy>
</target>
diff --git a/buildScripts/eclipse-debug-target.template b/buildScripts/eclipse-debug-target.template
index 033f8197..bb45cd69 100644
--- a/buildScripts/eclipse-debug-target.template
+++ b/buildScripts/eclipse-debug-target.template
@@ -21,7 +21,7 @@
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xms40m -Xmx512m -XX:MaxPermSize=256m @START_ON_FIRST_THREAD@ -Dorg.eclipse.swt.internal.carbon.smallFonts -javaagent:${project_loc:lombok}/dist/lombok.jar -Xbootclasspath/a:${project_loc:lombok}/dist/lombok.jar -Dlombok.patcher.patchDebugDir=${project_loc:lombok}/debug/patchedClasses"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xms40m -Xmx512m -XX:MaxPermSize=256m -Dorg.eclipse.swt.internal.carbon.smallFonts -javaagent:${project_loc:lombok}/dist/lombok.jar -Xbootclasspath/a:${project_loc:lombok}/dist/lombok.jar -Dlombok.patcher.patchDebugDir=${project_loc:lombok}/debug/patchedClasses"/>
<stringAttribute key="pde.version" value="3.3"/>
<stringAttribute key="product" value="org.eclipse.sdk.ide"/>
<booleanAttribute key="show_selected_only" value="false"/>