Skip to content

Commit

Permalink
fix for building by Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Apr 28, 2020
1 parent 39d3e45 commit 1fb0f4a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -150,7 +150,7 @@ public ResourceShadowTable getShadowTable(String resourceName, String searchedIt
tab.clickSearchInResource();
}
Selenide.sleep(1000);
if (intent != null && !intent.isBlank()) {
if (intent != null && !intent.isEmpty()) {
tab.setIntent(intent);
Selenide.sleep(MidPoint.TIMEOUT_DEFAULT_2_S);
}
Expand Down

0 comments on commit 1fb0f4a

Please sign in to comment.