Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc ApplicationError fixes #410

Merged
merged 1 commit into from
Sep 2, 2024
Merged
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 @@ -10,7 +10,6 @@
import static org.kiwiproject.base.KiwiThrowables.nextCauseOfNullable;
import static org.kiwiproject.base.KiwiThrowables.throwableInfoOfNullable;

import com.google.common.annotations.VisibleForTesting;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Builder;
Expand Down Expand Up @@ -132,7 +131,7 @@ public static void setPersistentHostInformation(String hostName, String ipAddres
* {@link #checkPersistentHostState()} for the error message to be correct.
*/
@Synchronized
public static synchronized void setPersistentHostInformation(PersistentHostInformation hostInfo) {
public static void setPersistentHostInformation(PersistentHostInformation hostInfo) {
checkArgumentNotNull(hostInfo);
setPersistentHostInformation(hostInfo.getHostName(), hostInfo.getIpAddress(), hostInfo.getPort());
}
Expand All @@ -146,8 +145,7 @@ public static synchronized void setPersistentHostInformation(PersistentHostInfor
* persistent host information at the same time.
*/
@Synchronized
@VisibleForTesting
public static synchronized void clearPersistentHostInformation() {
public static void clearPersistentHostInformation() {
persistentHostInformation = null;
}

Expand Down