Skip to content

Commit

Permalink
[Bugfix] Refactored code in the WebDriverException class: (#12933)
Browse files Browse the repository at this point in the history
Co-authored-by: Puja Jagani <[email protected]>
  • Loading branch information
manuelsblanco and pujagani authored Oct 12, 2023
1 parent 0a3d590 commit 7cc250f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/WebDriverException.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private String createMessage(String originalMessageString) {
getBuildInformation().toString(),
getSystemInformation(),
getAdditionalInformation())
.filter(s -> !(s == null || s.equals("")))
.filter(s -> !(s == null || s.isEmpty()))
.collect(Collectors.joining("\n"));
}

Expand Down
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/WindowType.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.openqa.selenium;

/** Represents the type of a new browser window that may be created. */
/** Represents the type of new browser window that may be created. */
public enum WindowType {
WINDOW("window"),
TAB("tab"),
Expand Down

0 comments on commit 7cc250f

Please sign in to comment.