Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2008-01-02 22:25:10 +0000
committerJohn Arthorne2008-01-02 22:25:10 +0000
commit9ad63ae2a1bb8f4b7a0d4818f03ca46ff6ac4977 (patch)
tree0704ad6ac1b7e1da9cacb0b3e5d24ceb9eaf387e /bundles/org.eclipse.equinox.p2.directorywatcher
parenta71437cdbf4728d41dfe4f922bfe423d9f419143 (diff)
downloadrt.equinox.p2-9ad63ae2a1bb8f4b7a0d4818f03ca46ff6ac4977.tar.gz
rt.equinox.p2-9ad63ae2a1bb8f4b7a0d4818f03ca46ff6ac4977.tar.xz
rt.equinox.p2-9ad63ae2a1bb8f4b7a0d4818f03ca46ff6ac4977.zip
Bug 192467 [prov] [repo] IMetadataRepository to return Iteration of InstallableUnits
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.directorywatcher')
-rw-r--r--bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/RepositoryListener.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/RepositoryListener.java b/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/RepositoryListener.java
index 67358502d..635082c17 100644
--- a/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/RepositoryListener.java
+++ b/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/RepositoryListener.java
@@ -240,7 +240,7 @@ public class RepositoryListener extends DirectoryChangeListener {
return true;
}
};
- metadataRepository.query(new InstallableUnitQuery(null), collector, null);
+ metadataRepository.query(InstallableUnitQuery.ANY, collector, null);
for (Iterator it = snapshot.iterator(); it.hasNext();) {
IArtifactKey key = (IArtifactKey) it.next();

Back to the top