Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-06-16 12:58:27 +0000
committerThomas Watson2017-06-16 12:58:27 +0000
commit0bd6de95a5caa4ebc3f9d05a2453b945ef393621 (patch)
tree0c707b3aee6a229abe82c1b77651e371be066e3a /bundles/org.eclipse.equinox.p2.tests
parent7f2fb3c85993a5aa3e61ac0dbb7dd1ed81225966 (diff)
downloadrt.equinox.p2-0bd6de95a5caa4ebc3f9d05a2453b945ef393621.tar.gz
rt.equinox.p2-0bd6de95a5caa4ebc3f9d05a2453b945ef393621.tar.xz
rt.equinox.p2-0bd6de95a5caa4ebc3f9d05a2453b945ef393621.zip
for new R7 method Change-Id: I42b1f4ba599faf273c967b3a35a4640aa773b73f Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/metadata/expression/FilterTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/metadata/expression/FilterTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/metadata/expression/FilterTest.java
index 9c72c15a7..caee126eb 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/metadata/expression/FilterTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/metadata/expression/FilterTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2015 IBM Corporation and others.
+ * Copyright (c) 2010, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -72,6 +72,10 @@ public class FilterTest extends TestCase {
public boolean isAssignableTo(Bundle bundle, String className) {
throw new UnsupportedOperationException();
}
+
+ public Dictionary getProperties() {
+ return new Hashtable(dictionary);
+ }
}
private static class SampleComparable implements Comparable {

Back to the top