294211a14a
- RHBZ 955214 Failure to properly start bundle on first run. - Eclipse Bug 406419 - Don't use -XX:-UseLoopPredicate
85 lines
4.2 KiB
Diff
85 lines
4.2 KiB
Diff
From 228b38bf70d970e9aeb0aa3a9430b0067395eec8 Mon Sep 17 00:00:00 2001
|
|
From: Krzysztof Daniel <kdaniel@redhat.com>
|
|
Date: Wed, 24 Apr 2013 14:06:58 +0200
|
|
Subject: [PATCH] Don't use -XX:-UseLoopPredicate
|
|
|
|
It was necessary to use it when Java had a loop bug, which was fixed in
|
|
the first update.
|
|
|
|
https://bugs.eclipse.org/bugs/show_bug.cgi?id=406419
|
|
---
|
|
eclipse-platform-parent/pom.xml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git eclipse-platform-parent/pom.xml eclipse-platform-parent/pom.xml
|
|
index 0bf154a..7ecf4b7 100644
|
|
--- eclipse-platform-parent/pom.xml
|
|
+++ eclipse-platform-parent/pom.xml
|
|
@@ -615,7 +615,7 @@
|
|
</repository>
|
|
</repositories>
|
|
<!-- this is to fix some lucene 3.x compatibility issue -->
|
|
- <argLine>-XX:-UseLoopPredicate -Dhelp.lucene.tokenizer=standard</argLine>
|
|
+ <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
|
|
<!-- actuall indexer call -->
|
|
<appArgLine>-data target/apibuild-workspace -application org.eclipse.ant.core.antRunner -buildfile target/.apibuild.xml</appArgLine>
|
|
<dependencies>
|
|
--
|
|
1.8.1.4
|
|
From 5327d8805d99af55044cd1c52422141c7948c6a3 Mon Sep 17 00:00:00 2001
|
|
From: Krzysztof Daniel <kdaniel@redhat.com>
|
|
Date: Wed, 24 Apr 2013 13:54:47 +0200
|
|
Subject: [PATCH] Don't use -XX:-UseLoopPredicate
|
|
|
|
It was necessary to use it when Java had a loop bug, which was fixed in
|
|
the first update.
|
|
|
|
https://bugs.eclipse.org/bugs/show_bug.cgi?id=406419
|
|
---
|
|
bundles/org.eclipse.jdt.doc.isv/pom.xml | 2 +-
|
|
bundles/org.eclipse.pde.doc.user/pom.xml | 2 +-
|
|
bundles/org.eclipse.platform.doc.isv/pom.xml | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/pom.xml eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/pom.xml
|
|
index 06e4eec..0e7602e 100644
|
|
--- eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/pom.xml
|
|
+++ eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/pom.xml
|
|
@@ -98,7 +98,7 @@
|
|
<configuration>
|
|
<skip>false</skip>
|
|
<!-- this is to fix some lucene 3.x compatibility issue -->
|
|
- <argLine>-XX:-UseLoopPredicate -Dhelp.lucene.tokenizer=standard</argLine>
|
|
+ <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
|
|
<!-- actuall indexer call -->
|
|
<appArgLine>-application org.eclipse.ant.core.antRunner -buildfile buildDoc.xml -Dbasedir.properties=cbi_basedirs.properties</appArgLine>
|
|
<dependencies>
|
|
diff --git eclipse.platform.common/bundles/org.eclipse.pde.doc.user/pom.xml eclipse.platform.common/bundles/org.eclipse.pde.doc.user/pom.xml
|
|
index 9731b09..fdc08bf 100644
|
|
--- eclipse.platform.common/bundles/org.eclipse.pde.doc.user/pom.xml
|
|
+++ eclipse.platform.common/bundles/org.eclipse.pde.doc.user/pom.xml
|
|
@@ -91,7 +91,7 @@
|
|
<phase>compile</phase>
|
|
<configuration>
|
|
<skip>false</skip>
|
|
- <argLine>-XX:-UseLoopPredicate -Dhelp.lucene.tokenizer=standard</argLine>
|
|
+ <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
|
|
<appArgLine>-application org.eclipse.ant.core.antRunner -buildfile buildDoc.xml -Dbasedir.properties=cbi_basedirs.properties</appArgLine>
|
|
<dependencies>
|
|
<dependency>
|
|
diff --git eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/pom.xml eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/pom.xml
|
|
index 81a851a..97431ea 100644
|
|
--- eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/pom.xml
|
|
+++ eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/pom.xml
|
|
@@ -248,7 +248,7 @@
|
|
<configuration>
|
|
<skip>false</skip>
|
|
<!-- this is to fix some lucene 3.x compatibility issue -->
|
|
- <argLine>-XX:-UseLoopPredicate -Dhelp.lucene.tokenizer=standard</argLine>
|
|
+ <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
|
|
<!-- actuall indexer call -->
|
|
<appArgLine>-application org.eclipse.ant.core.antRunner -buildfile buildDoc.xml -Dbasedir.properties=cbi_basedirs.properties</appArgLine>
|
|
<dependencies>
|
|
--
|
|
1.8.1.4
|