Skip to content

Commit 4d1752b

Browse files
Delta456pujagani
andauthored
[java] remove toml parser warning (#14711)
Co-authored-by: Puja Jagani <[email protected]>
1 parent 4a0d05e commit 4d1752b

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

-5
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)