Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Bull2011-04-12 03:58:35 +0000
committerIan Bull2011-04-12 03:58:35 +0000
commit19ec016b99297a1f98f94b0136189cb34f96e2bc (patch)
treeaa36a48ef7fe8953d965ba11f24a0d4fb4389556
parent50370fe78fa631036564eaa815dd176f0f2074ab (diff)
downloadrt.equinox.p2-19ec016b99297a1f98f94b0136189cb34f96e2bc.tar.gz
rt.equinox.p2-19ec016b99297a1f98f94b0136189cb34f96e2bc.tar.xz
rt.equinox.p2-19ec016b99297a1f98f94b0136189cb34f96e2bc.zip
REOPENED - bug 341826: Add a stopgap measure for artifact lockingv20110412-0007
https://bugs.eclipse.org/bugs/show_bug.cgi?id=341826
-rw-r--r--bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/Activator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/Activator.java b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/Activator.java
index 35006dcce..3ddc28b5c 100644
--- a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/Activator.java
+++ b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/Activator.java
@@ -55,11 +55,11 @@ public class Activator implements BundleActivator {
public boolean enableArtifactLocking() {
String property = getContext().getProperty(ENABLE_ARTIFACT_LOCKING);
if (property == null || property.length() == 0)
- return true; // return true by default;
+ return false; // return false by default;
Boolean valueOf = Boolean.valueOf(property);
if (valueOf != null)
return valueOf.booleanValue();
- return true;
+ return false;
}
/**

Back to the top