Skip to content

Commit

Permalink
chore: migrate to intellij gradle plugin 2.x
Browse files Browse the repository at this point in the history
Signed-off-by: Stephane Bouchet <[email protected]>
  • Loading branch information
sbouchet committed Jan 21, 2025
1 parent d3183ec commit d681777
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

import java.io.File;
import java.io.IOException;
import java.net.SocketTimeoutException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
Expand Down Expand Up @@ -155,7 +156,7 @@ private void minimizeProjectImportPopupIfItAppears() {
private boolean didProjectImportPopup() {
try {
remoteRobot.find(JButtonFixture.class, byXpath(XPathDefinitions.PROJECT_IMPORT_POPUP_MINIMIZE_BUTTON), Duration.ofSeconds(30));
} catch (WaitForConditionTimeoutException e) {
} catch (WaitForConditionTimeoutException | SocketTimeoutException e) {
return false;
}
return true;
Expand Down

0 comments on commit d681777

Please sign in to comment.