Skip to content

Commit

Permalink
refactor: Rename ContainerAwareDownloader to `ContainerAwareDownloa…
Browse files Browse the repository at this point in the history
…dSupport`

Renamed `ContainerAwareDownloader` to `ContainerAwareDownloadSupport` to better reflect that it's a `DownloadSupport` implementation.
  • Loading branch information
matrei committed Nov 12, 2024
1 parent d7539d8 commit f595239
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import org.openqa.selenium.Cookie
* @since 5.0.0
*/
@CompileStatic
trait ContainerAwareDownloader implements DownloadSupport {
trait ContainerAwareDownloadSupport implements DownloadSupport {

// HTTP 1.1 states that this charset is the default if none was specified
static final private DEFAULT_CHARSET = 'ISO-8859-1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import java.time.Duration
* @since 5.0.0
*/
@CompileStatic
abstract class ContainerGebSpec extends GebSpec implements ContainerAwareDownloader {
abstract class ContainerGebSpec extends GebSpec implements ContainerAwareDownloadSupport {

private static final String DEFAULT_HOSTNAME_FROM_CONTAINER = 'host.testcontainers.internal'
private static final String DEFAULT_HOSTNAME_FROM_HOST = 'localhost'
Expand Down

0 comments on commit f595239

Please sign in to comment.