Skip to content

Commit

Permalink
Merge branch 'master' into shadowing-strategy-stream
Browse files Browse the repository at this point in the history
  • Loading branch information
christiangoerdes authored Sep 4, 2024
2 parents 88c0480 + 77b793f commit 4532de8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public boolean equals(Object obj) {
if (obj instanceof APIProxyKey other) {
if (!basePaths.equals(other.basePaths))
return false;
return testExpr.equals(other.testExpr);
return Objects.equals(testExpr, other.testExpr);
}
return false;
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<javac.target>17</javac.target>
<jackson.version>2.17.2</jackson.version>
<spring.version>6.1.12</spring.version>
<slf4j.version>2.0.15</slf4j.version>
<slf4j.version>2.0.16</slf4j.version>
<log4j.version>2.23.1</log4j.version>
<junit.version>5.10.0</junit.version>
<groovy.version>4.0.22</groovy.version>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.8.0</version>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand Down
2 changes: 1 addition & 1 deletion starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.14</version>
<version>2.0.16</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 4532de8

Please sign in to comment.