Skip to content

Commit a0b2f61

Browse files
committed
refactor
1 parent 6463475 commit a0b2f61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/de/rwth/idsg/steve/repository/impl/OcppServerRepositoryImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ public void updateChargeboxHeartbeat(String chargeBoxIdentity, DateTime ts) {
108108

109109
@Override
110110
public void insertConnectorStatus(InsertConnectorStatusParams p) {
111-
112111
ctx.transaction(configuration -> {
113112
DSLContext ctx = DSL.using(configuration);
114113

@@ -194,7 +193,8 @@ public Integer insertTransaction(InsertTransactionParams p) {
194193
.getTransactionPk();
195194

196195
if (unknownTagInserted) {
197-
log.warn("The transaction '{}' contains an unknown idTag '{}' which was inserted into DB as to prevent information loss and has been blocked", transactionId, p.getIdTag());
196+
log.warn("The transaction '{}' contains an unknown idTag '{}' which was inserted into DB "
197+
+ "to prevent information loss and has been blocked", transactionId, p.getIdTag());
198198
}
199199

200200
// -------------------------------------------------------------------------

0 commit comments

Comments
 (0)