Skip to content

Commit 08723cd

Browse files
author
Gerald Unterrainer
committed
Merge branch 'develop'
2 parents d170521 + 7d87403 commit 08723cd

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>info.unterrainer.commons</groupId>
77
<artifactId>parent-javalin-pom</artifactId>
8-
<version>0.0.15</version>
8+
<version>0.1.0</version>
99
</parent>
1010

1111
<properties>
@@ -17,7 +17,7 @@
1717

1818
<modelVersion>4.0.0</modelVersion>
1919
<artifactId>http-server</artifactId>
20-
<version>0.2.44</version>
20+
<version>0.3.0</version>
2121
<name>HttpServer</name>
2222
<packaging>jar</packaging>
2323

@@ -30,17 +30,17 @@
3030
<dependency>
3131
<groupId>info.unterrainer.commons</groupId>
3232
<artifactId>jre-utils</artifactId>
33-
<version>0.2.13</version>
33+
<version>0.3.0</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>info.unterrainer.commons</groupId>
3737
<artifactId>rdb-utils</artifactId>
38-
<version>0.1.20</version>
38+
<version>0.2.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>info.unterrainer.commons</groupId>
4242
<artifactId>serialization</artifactId>
43-
<version>0.1.9</version>
43+
<version>0.2.0</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>javax.persistence</groupId>
@@ -55,17 +55,17 @@
5555
<dependency>
5656
<groupId>org.antlr</groupId>
5757
<artifactId>antlr4-runtime</artifactId>
58-
<version>4.8-1</version>
58+
<version>4.10.1</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.keycloak</groupId>
6262
<artifactId>keycloak-common</artifactId>
63-
<version>17.0.1</version>
63+
<version>18.0.2</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.keycloak</groupId>
6767
<artifactId>keycloak-core</artifactId>
68-
<version>17.0.1</version>
68+
<version>18.0.2</version>
6969
</dependency>
7070
</dependencies>
7171

src/main/java/info/unterrainer/commons/httpserver/daos/JpqlCoreDao.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import javax.persistence.Query;
1818
import javax.persistence.TypedQuery;
1919

20-
import org.mapstruct.ap.internal.util.Strings;
21-
2220
import info.unterrainer.commons.httpserver.exceptions.ForbiddenException;
2321
import info.unterrainer.commons.httpserver.exceptions.InternalServerErrorException;
2422
import info.unterrainer.commons.httpserver.jpas.BasicPermissionJpa;
@@ -158,16 +156,17 @@ else if (!orderBy.isBlank())
158156

159157
if (asyncStates != null)
160158
log.debug(" with asynchronous_state: [{}]",
161-
Strings.join(asyncStates.stream().map(AsyncState::toString).collect(Collectors.toList()), ", "));
159+
String.join(", ", asyncStates.stream().map(AsyncState::toString).collect(Collectors.toList())));
162160
addAsyncStatesParamsToQuery(asyncStates, q);
163161

164162
params = addTenantParams(params, tenantIds);
165163
if (params != null) {
166164
log.debug(" with parameters: [{}]",
167-
Strings.join(params.entrySet()
168-
.stream()
169-
.map(e -> e.getKey() + ": " + e.getValue().toString())
170-
.collect(Collectors.toList()), ", "));
165+
String.join(", ",
166+
params.entrySet()
167+
.stream()
168+
.map(e -> e.getKey() + ": " + e.getValue().toString())
169+
.collect(Collectors.toList())));
171170
for (Entry<String, Object> e : params.entrySet())
172171
q.setParameter(e.getKey(), e.getValue());
173172
}

0 commit comments

Comments
 (0)