Skip to content

Commit 28d52a9

Browse files
committed
Fix style
1 parent 651f653 commit 28d52a9

File tree

1 file changed

+2
-4
lines changed
  • jdi-light-vuetify/src/main/java/com/epam/jdi/light/vuetify/elements/complex

1 file changed

+2
-4
lines changed

jdi-light-vuetify/src/main/java/com/epam/jdi/light/vuetify/elements/complex/Autocomplete.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import com.epam.jdi.light.elements.base.UIBaseElement;
66
import com.epam.jdi.light.elements.common.UIElement;
77
import com.epam.jdi.light.elements.complex.ISetup;
8-
import com.epam.jdi.light.elements.complex.WebList;
98
import com.epam.jdi.light.vuetify.annotations.JAutocomplete;
109
import com.epam.jdi.light.vuetify.asserts.AutocompleteAssert;
1110
import com.epam.jdi.light.vuetify.elements.common.ListItem;
@@ -67,8 +66,7 @@ public AutocompleteAssert is() {
6766
public UIElement root() {
6867
if (rootLocator != null) {
6968
return $(rootLocator);
70-
}
71-
else {
69+
} else {
7270
return core();
7371
}
7472
}
@@ -167,7 +165,7 @@ public void unselect(List<String> values) {
167165
@JDIAction("Get if '{0}' from '{name}' is selected")
168166
public boolean isSelected(String value) {
169167
String allValues = value().attr("value");
170-
return allValues.contains(value+",") || allValues.endsWith(value);
168+
return allValues.contains(value + ",") || allValues.endsWith(value);
171169
}
172170

173171
@JDIAction("Get if '{0}' from '{name}' is selected")

0 commit comments

Comments
 (0)