Skip to content

Commit

Permalink
[eclipse] Avoid infinite loop when loading SREs
Browse files Browse the repository at this point in the history
see #218.

Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Oct 17, 2014
1 parent e7a9bb8 commit c670b25
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Expand Up @@ -211,10 +211,10 @@ public static ISREInstall getDefaultSREInstall() {
if (install != null && install.getValidity().isOK()) {
return install;
}
// if the default JRE goes missing, re-detect
// if the default SRE goes missing, re-detect
LOCK.lock();
try {
defaultSREId = null;
//defaultSREId = null;
initializeSREs();
} finally {
LOCK.unlock();
Expand Down
@@ -1,22 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?><target includeMode="feature" name="io.sarl.lang.targetplatform" sequenceNumber="27">
<?pde version="3.8"?><target includeMode="feature" name="io.sarl.lang.targetplatform" sequenceNumber="28">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.jdt.feature.group" version="3.10.0.v20140606-1536"/>
<unit id="org.eclipse.jgit.feature.group" version="3.4.0.201406110918-r"/>
<unit id="org.eclipse.jdt.feature.group" version="3.10.0.v20140925-0400"/>
<unit id="org.eclipse.jgit.feature.group" version="3.4.1.201406201815-r"/>
<unit id="org.eclipse.m2e.feature.feature.group" version="1.5.0.20140606-0033"/>
<unit id="org.eclipse.epp.mpc.feature.group" version="1.3.0.v20140529-2031"/>
<unit id="org.eclipse.recommenders.rcp.feature.feature.group" version="2.1.0.v20140610-1852"/>
<unit id="org.eclipse.epp.mpc.feature.group" version="1.3.1.v20140908-1651"/>
<unit id="org.eclipse.recommenders.rcp.feature.feature.group" version="2.1.9.v20140917-1240"/>
<repository location="http://download.eclipse.org/releases/luna"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.powermock.mockito-junit.feature.feature.group" version="1.5.4.1"/>
<repository location="http://powermock-osgi.googlecode.com/svn/updateSite/1.5.4.1"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.xtend.sdk.feature.group" version="2.7.2.v201409160908"/>
<unit id="org.eclipse.xtext.redist.feature.group" version="2.7.2.v201409160908"/>
<repository location="http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.powermock.mockito-junit.feature.feature.group" version="1.5.4.1"/>
<repository location="http://powermock-osgi.googlecode.com/svn/updateSite/1.5.4.1"/>
</location>
</locations>
</target>

0 comments on commit c670b25

Please sign in to comment.