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-2.2.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-osgi-mock.git
commit fbdc5fc60cc475cb3ef451e585661418d87fa7fe Author: Stefan Seifert <[email protected]> AuthorDate: Sat Dec 3 10:59:28 2016 +0000 fix javadoc errors git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/osgi-mock@1772454 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/sling/testing/mock/osgi/MapUtil.java | 4 ++++ .../org/apache/sling/testing/mock/osgi/junit/ContextCallback.java | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/testing/mock/osgi/MapUtil.java b/src/main/java/org/apache/sling/testing/mock/osgi/MapUtil.java index c596fed..11891a0 100644 --- a/src/main/java/org/apache/sling/testing/mock/osgi/MapUtil.java +++ b/src/main/java/org/apache/sling/testing/mock/osgi/MapUtil.java @@ -37,6 +37,8 @@ public final class MapUtil { /** * Convert map to dictionary. + * @param <T> Key + * @param <U> Value * @param map Map * @return Dictionary */ @@ -49,6 +51,8 @@ public final class MapUtil { /** * Convert Dictionary to map + * @param <T> Key + * @param <U> Value * @param dictionary Dictionary * @return Map */ diff --git a/src/main/java/org/apache/sling/testing/mock/osgi/junit/ContextCallback.java b/src/main/java/org/apache/sling/testing/mock/osgi/junit/ContextCallback.java index 12f0c29..fee823e 100644 --- a/src/main/java/org/apache/sling/testing/mock/osgi/junit/ContextCallback.java +++ b/src/main/java/org/apache/sling/testing/mock/osgi/junit/ContextCallback.java @@ -22,13 +22,13 @@ import org.apache.sling.testing.mock.osgi.context.OsgiContextImpl; /** * Callback-interface for application-specific setup and teardown operations to - * customize the {@link SlingContext} JUnit rule. + * customize the {@link OsgiContext} JUnit rule. */ public interface ContextCallback<T extends OsgiContextImpl> { /** * Execute callback action - * @param context Sling context + * @param context OSGi context * @throws Exception exception */ void execute(T context) throws Exception; -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
