Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-06-12 10:51:38 +0000
committerAlexander Kurtakov2020-06-12 10:51:38 +0000
commit36d68972ac5623c12b32c9baa98e008583da6e13 (patch)
tree5bd418eb8f12c4a39c7ea107e837cac9c7f00bc8
parentfc238c99955419b8221d2849677be918db9be616 (diff)
downloadrt.equinox.p2-36d68972ac5623c12b32c9baa98e008583da6e13.tar.gz
rt.equinox.p2-36d68972ac5623c12b32c9baa98e008583da6e13.tar.xz
rt.equinox.p2-36d68972ac5623c12b32c9baa98e008583da6e13.zip
Change-Id: Ifc7fa618928c4feff645d4300dfc9f012d455b62 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/metadata/expression/FilterTest.java7
1 files changed, 6 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 597e8bd8d..979ede089 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, 2018 IBM Corporation and others.
+ * Copyright (c) 2010, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -289,5 +289,10 @@ public class FilterTest {
public Dictionary<String, Object> getProperties() {
return new Hashtable<>(dictionary);
}
+
+ @Override
+ public Object adapt(Class type) {
+ return null;
+ }
}
}

Back to the top