Index: trunk/src/org/openstreetmap/josm/spi/preferences/MapListSetting.java
===================================================================
--- trunk/src/org/openstreetmap/josm/spi/preferences/MapListSetting.java	(revision 16436)
+++ trunk/src/org/openstreetmap/josm/spi/preferences/MapListSetting.java	(revision 16437)
@@ -2,4 +2,5 @@
 package org.openstreetmap.josm.spi.preferences;
 
+import java.util.Collections;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -8,5 +9,4 @@
 
 import org.openstreetmap.josm.tools.StreamUtils;
-import org.openstreetmap.josm.tools.Utils;
 
 /**
@@ -31,5 +31,5 @@
         List<Map<String, String>> copy = value.stream()
                 .map(LinkedHashMap::new)
-                .map(Utils::toUnmodifiableMap)
+                .map(Collections::unmodifiableMap)
                 .collect(StreamUtils.toUnmodifiableList());
         return new MapListSetting(copy);
