Index: /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/value/MapdustPluginState.java
===================================================================
--- /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/value/MapdustPluginState.java	(revision 33231)
+++ /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/value/MapdustPluginState.java	(revision 33232)
@@ -44,5 +44,5 @@
 
     /** The value of the state */
-    private String value;
+    private final String value;
 
     /**
Index: /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/value/MapdustServiceCommand.java
===================================================================
--- /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/value/MapdustServiceCommand.java	(revision 33231)
+++ /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/value/MapdustServiceCommand.java	(revision 33232)
@@ -45,13 +45,8 @@
 
     /** The key */
-    private String key;
+    private final String key;
 
     /** The value */
-    private String value;
-
-    /**
-     * Builds a new <code>MapdustServiceCommand</code> object
-     */
-    MapdustServiceCommand() {}
+    private final String value;
 
     /**
@@ -79,4 +74,3 @@
         return value;
     }
-
 }
Index: /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/service/value/MapdustResponseStatusCode.java
===================================================================
--- /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/service/value/MapdustResponseStatusCode.java	(revision 33231)
+++ /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/service/value/MapdustResponseStatusCode.java	(revision 33232)
@@ -73,11 +73,11 @@
 
     /** The code of the error */
-    private Integer statusCode;
+    private final Integer statusCode;
 
     /** The Mapdust API code */
-    private Integer apiCode;
+    private final Integer apiCode;
 
     /** The description of the response code */
-    private String description;
+    private final String description;
 
     /**
Index: /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/util/http/HttpConnector.java
===================================================================
--- /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/util/http/HttpConnector.java	(revision 33231)
+++ /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/util/http/HttpConnector.java	(revision 33232)
@@ -38,4 +38,5 @@
 import java.net.URL;
 import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
 import java.util.Map;
 
@@ -164,5 +165,5 @@
                 if (sbEncodeParameters.length() > 0) {
                     try (OutputStreamWriter out =
-                            new OutputStreamWriter(connection.getOutputStream())) {
+                            new OutputStreamWriter(connection.getOutputStream(), StandardCharsets.UTF_8)) {
                         out.write(sbEncodeParameters.toString());
                     }
@@ -207,5 +208,5 @@
     protected String readContent(Object obj) throws IOException {
         String result = "";
-        InputStreamReader in = new InputStreamReader((InputStream) obj);
+        InputStreamReader in = new InputStreamReader((InputStream) obj, StandardCharsets.UTF_8);
         BufferedReader buff = new BufferedReader(in);
         String line = "";
Index: /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/util/retry/RetryMode.java
===================================================================
--- /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/util/retry/RetryMode.java	(revision 33231)
+++ /applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/util/retry/RetryMode.java	(revision 33232)
@@ -48,5 +48,5 @@
 
     /** The name of the retry mode*/
-    private String name;
+    private final String name;
 
     /**
