Skip to content

Commit 5d9b5d1

Browse files
style: format code to follow style guidelines
1 parent 3da347f commit 5d9b5d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/support/ui/Select.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void selectByVisibleText(String text) {
130130
By.xpath(".//option[normalize-space(.) = " + Quotes.escape(text) + "]"));
131131

132132
for (WebElement option : options) {
133-
if(!hasCssPropertyAndVisible(option)) {
133+
if (!hasCssPropertyAndVisible(option)) {
134134
throw new NoSuchElementException("Invisible option with text: " + text);
135135
}
136136
setSelected(option, true);

0 commit comments

Comments
 (0)