Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Bull2011-03-07 17:42:22 +0000
committerIan Bull2011-03-07 17:42:22 +0000
commit795b066d758babee2f03c02d262f8bd21af7fe07 (patch)
tree4cc21ce06d3c1600d66494a6c3626be6d6b4e50c /bundles/org.eclipse.equinox.p2.repository/src
parentd826ca961eb560d90c9e8bbb266c06ad9bed8a6d (diff)
downloadrt.equinox.p2-795b066d758babee2f03c02d262f8bd21af7fe07.tar.gz
rt.equinox.p2-795b066d758babee2f03c02d262f8bd21af7fe07.tar.xz
rt.equinox.p2-795b066d758babee2f03c02d262f8bd21af7fe07.zip
NEW - bug 339106: recursive error produces too many files open
https://bugs.eclipse.org/bugs/show_bug.cgi?id=339106 -- I didn't mean to mark that method 'final'.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.repository/src')
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
index cfe629603..4317e1a1a 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
@@ -186,7 +186,7 @@ public abstract class AbstractRepository<T> extends PlatformObject implements IR
/**
* {@inheritDoc}
*/
- public final synchronized String setProperty(String key, String value) {
+ public synchronized String setProperty(String key, String value) {
return this.setProperty(key, value, new NullProgressMonitor());
}

Back to the top