Skip to content

Commit ba35541

Browse files
committed
[java] remove toml parser warning
1 parent 71bc491 commit ba35541

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

java/src/org/openqa/selenium/grid/config/TomlConfig.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,15 @@
3131
import java.util.List;
3232
import java.util.Optional;
3333
import java.util.Set;
34-
import java.util.logging.Logger;
3534
import org.openqa.selenium.internal.Require;
3635

3736
public class TomlConfig implements Config {
3837

3938
private final Toml toml;
40-
private static final Logger LOG = Logger.getLogger(TomlConfig.class.getName());
4139

4240
public TomlConfig(Reader reader) {
4341
try {
4442
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");
4843
} catch (IOException e) {
4944
throw new ConfigException("Unable to read TOML.", e);
5045
} catch (ParseException e) {

0 commit comments

Comments
 (0)