diff options
Diffstat (limited to 'infra/translate-utils')
3 files changed, 6 insertions, 6 deletions
diff --git a/infra/translate-utils/pom.xml b/infra/translate-utils/pom.xml index 8653f22de..5de5020ab 100644 --- a/infra/translate-utils/pom.xml +++ b/infra/translate-utils/pom.xml @@ -74,7 +74,7 @@ </dependency> <dependency> <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-all</artifactId> + <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> diff --git a/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/RWUtils.java b/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/RWUtils.java index 2bd2de1ec..87e986430 100644 --- a/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/RWUtils.java +++ b/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/RWUtils.java @@ -142,7 +142,7 @@ public final class RWUtils { /** * Transform a keyed instance identifier into a wildcarded one. - * <p/> + * * ! This has to be called also for wildcarded List instance identifiers * due to weird behavior of equals in InstanceIdentifier ! */ diff --git a/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/cache/DumpCacheManager.java b/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/cache/DumpCacheManager.java index a9e958240..a201b75ee 100644 --- a/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/cache/DumpCacheManager.java +++ b/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/cache/DumpCacheManager.java @@ -53,12 +53,12 @@ public final class DumpCacheManager<T, U> { } /** - * Returns {@link Optional<T>} of dump + * Returns {@link Optional} of dump * * @param identifier identifier for origin of dumping context * @param cache modification cache of current transaction * @throws ReadFailedException if execution of dumping request failed - * @returns If present in cache ,returns cached instance, if not, tries to dump data using provided executor, + * @return If present in cache ,returns cached instance, if not, tries to dump data using provided executor, * otherwise Optional.empty() */ public Optional<T> getDump(@Nonnull final InstanceIdentifier<?> identifier, @@ -68,13 +68,13 @@ public final class DumpCacheManager<T, U> { } /** - * Returns {@link Optional<T>} of dump + * Returns {@link Optional} of dump * * @param identifier identifier for origin of dumping context * @param cache modification cache of current transaction * @param dumpParams parameters to configure dump request * @throws ReadFailedException if execution of dumping request failed - * @returns If present in cache ,returns cached instance, if not, tries to dump data using provided executor, + * @return If present in cache ,returns cached instance, if not, tries to dump data using provided executor, * otherwise Optional.empty() */ public Optional<T> getDump(@Nonnull final InstanceIdentifier<?> identifier, |