Skip to content

Commit

Permalink
Minor dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Sep 1, 2023
1 parent 526606e commit 9862079
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<commons.text.version>1.10.0</commons.text.version>
<commons.beanutils.version>1.9.4</commons.beanutils.version>
<commons.collections.version>4.4</commons.collections.version>
<commons.compress.version>1.23.0</commons.compress.version>
<commons.net.version>3.9.0</commons.net.version>
<commons.codec.version>1.16.0</commons.codec.version>
<freemarker.version>2.3.32</freemarker.version>
Expand Down Expand Up @@ -270,6 +271,11 @@
<artifactId>commons-collections4</artifactId>
<version>${commons.collections.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${commons.compress.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions serenity-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,10 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
<dependency>
<groupId>org.fluentlenium</groupId>
<artifactId>fluentlenium-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -835,17 +835,10 @@ private Optional<TestStep> getPreviousStep() {
}

private TestStep getCurrentGroup() {
// if (currentGroupStack.get().isEmpty()) {
if (currentGroupStack.isEmpty()) {
return null;
} else {
// return currentGroupStack.get().peek();// findLastChildIn(currentGroupStack.peek());
return currentGroupStack.peek();// findLastChildIn(currentGroupStack.peek());
}
return currentGroupStack.isEmpty() ? null : currentGroupStack.peek();
}

private boolean thereAreUnfinishedSteps() {
// return !currentStepStack.get().isEmpty();
return !currentStepStack.isEmpty();
}

Expand Down

0 comments on commit 9862079

Please sign in to comment.