diff --git a/src/main/java/de/rwth/idsg/steve/ocpp/ws/JsonObjectMapper.java b/src/main/java/de/rwth/idsg/steve/ocpp/ws/JsonObjectMapper.java
index 26d54d867..a379eb629 100644
--- a/src/main/java/de/rwth/idsg/steve/ocpp/ws/JsonObjectMapper.java
+++ b/src/main/java/de/rwth/idsg/steve/ocpp/ws/JsonObjectMapper.java
@@ -20,7 +20,6 @@
import com.fasterxml.jackson.annotation.JsonInclude;
import de.rwth.idsg.ocpp.jaxb.validation.BeanValidationModule;
-import de.rwth.idsg.steve.ocpp.ws.custom.CustomStringModule;
import de.rwth.idsg.steve.ocpp.ws.ocpp12.Ocpp12JacksonModule;
import de.rwth.idsg.steve.ocpp.ws.ocpp15.Ocpp15JacksonModule;
import de.rwth.idsg.steve.ocpp.ws.ocpp16.Ocpp16JacksonModule;
@@ -59,7 +58,6 @@ public enum JsonObjectMapper {
.enable(FAIL_ON_NULL_FOR_PRIMITIVES)
.enable(WRITE_BIGDECIMAL_AS_PLAIN)
.disable(FAIL_ON_UNKNOWN_PROPERTIES)
- .addModule(new CustomStringModule())
.addModule(new Ocpp12JacksonModule())
.addModule(new Ocpp15JacksonModule())
.addModule(new Ocpp16JacksonModule())
diff --git a/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModule.java b/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModule.java
deleted file mode 100644
index 61ab38de3..000000000
--- a/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModule.java
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * SteVe - SteckdosenVerwaltung - https://github.com/steve-community/steve
- * Copyright (C) 2013-2026 SteVe Community Team
- * All Rights Reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-package de.rwth.idsg.steve.ocpp.ws.custom;
-
-import org.owasp.encoder.Encode;
-import tools.jackson.core.JacksonException;
-import tools.jackson.core.JsonGenerator;
-import tools.jackson.core.JsonParser;
-import tools.jackson.core.Version;
-import tools.jackson.databind.DatabindException;
-import tools.jackson.databind.DeserializationContext;
-import tools.jackson.databind.JavaType;
-import tools.jackson.databind.SerializationContext;
-import tools.jackson.databind.deser.jdk.StringDeserializer;
-import tools.jackson.databind.jsonFormatVisitors.JsonFormatVisitorWrapper;
-import tools.jackson.databind.jsontype.TypeSerializer;
-import tools.jackson.databind.module.SimpleModule;
-import tools.jackson.databind.ser.jdk.StringSerializer;
-import tools.jackson.databind.ser.std.StdScalarSerializer;
-
-/**
- * @author Sevket Goekay
- * @since 17.08.2022
- */
-public class CustomStringModule extends SimpleModule {
-
- public CustomStringModule() {
- super("CustomStringModule", new Version(0, 0, 1, null, "de.rwth.idsg", "steve"));
-
- super.addSerializer(String.class, new CustomStringSerializer());
- super.addDeserializer(String.class, new CustomStringDeserializer());
- }
-
- /**
- * Since {@link StringSerializer} is marked as final, its contents are copied here (and adjusted as needed).
- */
- private static class CustomStringSerializer extends StdScalarSerializer