mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 08:59:12 +00:00
fix: Fix minor typos (#2619)
Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io> Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
be0d5e5953
commit
f79782bea9
@@ -61,7 +61,7 @@ public class AlbumPage extends Page {
|
||||
try {
|
||||
page = this.webClient.getPage(PAGE_URL);
|
||||
} catch (IOException e) {
|
||||
LOGGER.error("An error occured on navigateToPage.", e);
|
||||
LOGGER.error("An error occurred on navigateToPage.", e);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
@@ -151,7 +151,7 @@ public class AlbumPage extends Page {
|
||||
try {
|
||||
cancelButton.click();
|
||||
} catch (IOException e) {
|
||||
LOGGER.error("An error occured on cancelChanges.", e);
|
||||
LOGGER.error("An error occurred on cancelChanges.", e);
|
||||
}
|
||||
return new AlbumListPage(webClient);
|
||||
}
|
||||
@@ -167,7 +167,7 @@ public class AlbumPage extends Page {
|
||||
try {
|
||||
saveButton.click();
|
||||
} catch (IOException e) {
|
||||
LOGGER.error("An error occured on saveChanges.", e);
|
||||
LOGGER.error("An error occurred on saveChanges.", e);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user