This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to annotated tag 0.8 in repository https://gitbox.apache.org/repos/asf/sis.git
commit b6d2d67c4245569a17b8a85893616606016eec31 Author: Martin Desruisseaux <[email protected]> AuthorDate: Mon Oct 30 13:45:03 2017 +0000 Javadoc fixes. git-svn-id: https://svn.apache.org/repos/asf/sis/branches/0.8@1813762 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/org/apache/sis/util/collection/Cache.java | 2 +- .../src/main/java/org/apache/sis/internal/storage/URIDataStore.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/sis-utility/src/main/java/org/apache/sis/util/collection/Cache.java b/core/sis-utility/src/main/java/org/apache/sis/util/collection/Cache.java index 9662855..b2167ec 100644 --- a/core/sis-utility/src/main/java/org/apache/sis/util/collection/Cache.java +++ b/core/sis-utility/src/main/java/org/apache/sis/util/collection/Cache.java @@ -63,7 +63,7 @@ import org.apache.sis.internal.jdk8.Supplier; * public MyObject getMyObject(final String key) throws MyCheckedException { * try { * return cache.getOrCreate(key, new Callable<MyObject>() { - * MyObject call() throws FactoryException { + * public MyObject call() throws MyCheckedException { * return createMyObject(key); * } * }); diff --git a/storage/sis-storage/src/main/java/org/apache/sis/internal/storage/URIDataStore.java b/storage/sis-storage/src/main/java/org/apache/sis/internal/storage/URIDataStore.java index 284c7cc..bd7e0c2 100644 --- a/storage/sis-storage/src/main/java/org/apache/sis/internal/storage/URIDataStore.java +++ b/storage/sis-storage/src/main/java/org/apache/sis/internal/storage/URIDataStore.java @@ -72,9 +72,9 @@ public abstract class URIDataStore extends DataStore { * This convenience method is used for public {@code DataStore} implementations that can not extend * {@code URIDataStore} directly, because this class is internal. * - * @param provider - * @param location - * @return + * @param provider the provider of the data store for which to get open parameters. + * @param location file opened by the data store. + * @return parameters to be returned by {@link DataStore#getOpenParameters()}. * * @todo Verify if non-exported classes in JDK9 are hidden from Javadoc, like package-private classes. * If true, we could remove this hack and extend {@code URIDataStore} even in public classes.
