Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public long cachedObjectExpiresAtMicros(Obj obj, LongSupplier clockMicros) {
}

@Override
@SuppressWarnings("EqualsGetClass") // explict class-instance-equals is intentional
@SuppressWarnings("EqualsGetClass") // explicit class-instance-equals is intentional
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* Vert.x based address resolver.
*
* <p>Resolves names to both IPv4 and IPv6 addresses using a given search-list. These
* functionalities are not supported vie{@code InetAddress}.
* functionalities are not supported via{@code InetAddress}.
*/
record AddressResolver(DnsClient dnsClient, List<String> searchList) {
private static final Logger LOGGER = LoggerFactory.getLogger(AddressResolver.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ Optional<RESULT> commitAttempt(
}
return newReference.map(
newRef -> {
LOGGER.debug("Successfully commited change from {} to {}", reference, newRef);
LOGGER.debug("Successfully committed change from {} to {}", reference, newRef);
if (state.result != null) {
return state.result;
}
Expand Down