Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DanVanAtta committed Nov 28, 2023
1 parent 50d5c64 commit 42000ad
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import javax.annotation.Nullable;
import lombok.extern.slf4j.Slf4j;
import org.triplea.game.ApplicationContext;
import org.triplea.http.client.maps.listing.MapsClient;
import org.triplea.io.FileUtils;
import org.triplea.util.Services;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import lombok.AccessLevel;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
import org.triplea.http.client.maps.listing.MapsClient;
import org.triplea.java.ThreadRunner;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.nio.file.Path;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.triplea.http.client.maps.listing.MapsClient;

@SuppressWarnings("InnerClassMayBeStatic")
final class ClientFileSystemHelperTest {
Expand All @@ -18,7 +17,8 @@ void shouldReturnCurrentFolderWhenOverrideFolderNotSet() {
final Path result =
ClientFileSystemHelper.getUserMapsFolder(() -> Path.of("/path/to/current"));

assertThat(result, is(Path.of("/path", "to", "current", ClientFileSystemHelper.MAPS_FOLDER_NAME)));
assertThat(
result, is(Path.of("/path", "to", "current", ClientFileSystemHelper.MAPS_FOLDER_NAME)));
}
}
}

0 comments on commit 42000ad

Please sign in to comment.