Skip to content

Commit

Permalink
use the same login page class (SettingsPage) for upload and extract
Browse files Browse the repository at this point in the history
use the same login page class (SettingsPage) for upload and extract
  • Loading branch information
ashitsalesforce committed Mar 22, 2024
1 parent 1c1a187 commit 32c57dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 46 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>com.force.api</groupId>
<artifactId>force-partner-api</artifactId>
<version>60.1.1</version>
<version>59.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
<dependency>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ public boolean performFinish() {

@Override
protected SettingsPage createSettingsPage() {
return new ExtractionSettingsPage(getController());
SettingsPage loginPage = new SettingsPage(getController());
loginPage.setNextPageName(ExtractionDataSelectionPage.class.getSimpleName());
return loginPage;
}
}

0 comments on commit 32c57dd

Please sign in to comment.