This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.testing.osgi-mock-1.1.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-osgi-mock.git
commit b30dd561dcceaad8271b06d5ee82c7df29c71b61 Author: Stefan Seifert <[email protected]> AuthorDate: Fri Nov 14 09:57:23 2014 +0000 SLING-4162 fix javadoc git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/osgi-mock@1639590 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/testing/mock/osgi/junit/OsgiContext.java | 8 +++----- .../apache/sling/testing/mock/osgi/junit/OsgiContextCallback.java | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContext.java b/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContext.java index 1704b72..652298b 100644 --- a/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContext.java +++ b/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContext.java @@ -34,16 +34,14 @@ public final class OsgiContext extends OsgiContextImpl implements TestRule { private final TestRule delegate; /** - * Initialize Sling context with default resource resolver type: - * {@link org.apache.sling.testing.mock.sling.MockSling#DEFAULT_RESOURCERESOLVER_TYPE}. + * Initialize OSGi context. */ public OsgiContext() { this(null, null); } /** - * Initialize Sling context with default resource resolver type: - * {@link org.apache.sling.testing.mock.sling.MockSling#DEFAULT_RESOURCERESOLVER_TYPE}. + * Initialize OSGi context. * @param setUpCallback Allows the application to register an own callback * function that is called after the built-in setup rules are * executed. @@ -53,7 +51,7 @@ public final class OsgiContext extends OsgiContextImpl implements TestRule { } /** - * Initialize Sling context with resource resolver type. + * Initialize OSGi context. * @param setUpCallback Allows the application to register an own callback * function that is called after the built-in setup rules are * executed. diff --git a/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContextCallback.java b/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContextCallback.java index 751ce7e..c6a77ff 100644 --- a/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContextCallback.java +++ b/src/main/java/org/apache/sling/testing/mock/osgi/junit/OsgiContextCallback.java @@ -28,7 +28,7 @@ public interface OsgiContextCallback { /** * Execute callback action - * @param context Sling context + * @param context OSGi context * @throws IOException * @throws PersistenceException */ -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
