We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a0d05e commit 4d1752bCopy full SHA for 4d1752b
java/src/org/openqa/selenium/grid/config/TomlConfig.java
@@ -31,20 +31,15 @@
31
import java.util.List;
32
import java.util.Optional;
33
import java.util.Set;
34
-import java.util.logging.Logger;
35
import org.openqa.selenium.internal.Require;
36
37
public class TomlConfig implements Config {
38
39
private final Toml toml;
40
- private static final Logger LOG = Logger.getLogger(TomlConfig.class.getName());
41
42
public TomlConfig(Reader reader) {
43
try {
44
toml = JToml.parse(reader);
45
- LOG.warning(
46
- "Please use quotes to denote strings. Upcoming TOML parser will require this and unquoted"
47
- + " strings will throw an error in the future");
48
} catch (IOException e) {
49
throw new ConfigException("Unable to read TOML.", e);
50
} catch (ParseException e) {
0 commit comments