File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/util/validator Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2323import java .util .List ;
2424import java .util .Map ;
2525import java .util .concurrent .ConcurrentHashMap ;
26+ import java .util .concurrent .ConcurrentSkipListMap ;
2627import java .util .concurrent .atomic .AtomicLong ;
2728
2829import static environment .EnvironmentFactory .*;
@@ -312,7 +313,7 @@ void validateElementsAreNotOverlapped(List<WebElement> rootElements) {
312313
313314 void validateGridAlignment (int columns , int rows ) {
314315 if (rootElements != null ) {
315- ConcurrentHashMap <Integer , AtomicLong > map = new ConcurrentHashMap <>();
316+ ConcurrentSkipListMap <Integer , AtomicLong > map = new ConcurrentSkipListMap <>();
316317 for (WebElement el : rootElements ) {
317318 Integer y = el .getLocation ().y ;
318319
You can’t perform that action at this time.
0 commit comments