commit | 072f6af6df61ef8fa5748935e8d80f512e81ce6b | [log] [tgz] |
---|---|---|
author | Clement Escoffier <clement@apache.org> | Fri Oct 04 15:43:34 2013 +0000 |
committer | Clement Escoffier <clement@apache.org> | Fri Oct 04 15:43:34 2013 +0000 |
tree | 9f1d8ed740867db1414ae335413f3c8b581a2b08 | |
parent | 7e9514659b3bb262c1d25497fe4116711310de1c [diff] |
Avoid infinite recursion. git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1529197 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/manipulator/manipulator-it/ipojo-manipulator-manipulation-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestNativeMethod.java b/ipojo/manipulator/manipulator-it/ipojo-manipulator-manipulation-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestNativeMethod.java index 6235c7b..32f6546 100644 --- a/ipojo/manipulator/manipulator-it/ipojo-manipulator-manipulation-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestNativeMethod.java +++ b/ipojo/manipulator/manipulator-it/ipojo-manipulator-manipulation-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestNativeMethod.java
@@ -65,7 +65,7 @@ public boolean isKnopflerfish() { if (context != null) { - return isKnopflerfish(); + return super.isKnopflerfish(); } else { String pf = System.getProperty("pax.exam.framework"); return pf != null && pf.equalsIgnoreCase("knopflerfish");