File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed
java/server/src/org/openqa/selenium/grid Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change 23
23
import java .util .List ;
24
24
import java .util .Optional ;
25
25
import java .util .Set ;
26
- import java .util .logging .Logger ;
27
26
28
27
import static com .google .common .collect .ImmutableList .toImmutableList ;
29
28
import static com .google .common .collect .ImmutableSortedSet .toImmutableSortedSet ;
33
32
34
33
public class CompoundConfig implements Config {
35
34
36
- private static final Logger LOG = Logger .getLogger (Config .class .getName ());
37
35
private final List <Config > allConfigs ;
38
36
39
37
public CompoundConfig (Config ... allConfigsInDescendingOrderOfImportance ) {
Original file line number Diff line number Diff line change 25
25
import org .openqa .selenium .remote .http .HttpResponse ;
26
26
27
27
import java .util .Collections ;
28
- import java .util .TreeMap ;
29
28
import java .util .logging .Logger ;
30
29
31
30
import static java .net .HttpURLConnection .HTTP_UNAUTHORIZED ;
Original file line number Diff line number Diff line change 24
24
import java .io .IOException ;
25
25
import java .nio .file .Files ;
26
26
import java .util .Arrays ;
27
- import java .util .logging .Logger ;
28
27
29
28
import static java .util .Base64 .getEncoder ;
30
29
31
30
public class SecretOptions {
32
31
33
32
private static final String SERVER_SECTION = "server" ;
34
33
35
- private static final Logger LOG = Logger .getLogger (SecretOptions .class .getName ());
36
34
private final Config config ;
37
35
38
36
public SecretOptions (Config config ) {
You can’t perform that action at this time.
0 commit comments