Index: trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/items/TextTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/items/TextTest.java	(revision 19261)
+++ trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/items/TextTest.java	(revision 19262)
@@ -54,8 +54,10 @@
     @ValueSource(strings = {"\n\n\n\t\r {0}\n\n\n", "{0}"})
     void testNonRegression24023(String inscription) {
-        // There is a bit of "extra" whitespace in the string (` \n`). It is somewhat deliberate. We probably ought to remove the ` ` at some time.
+        // There is a bit of "extra" whitespace in the string (` \n`). It is somewhat deliberate.
+        // We probably ought to remove the ` ` at some time.
         final String expected = "This is a \nsample \ninscription";
         final String toTest = MessageFormat.format(inscription, expected).replace("sample ", "sample    ");
-        final Collection<TaggingPreset> presets = TaggingPresets.getMatchingPresets(Collections.singleton(TaggingPresetType.NODE), Map.of("historic", "boundary_stone", "inscription", "bar"), false);
+        final Collection<TaggingPreset> presets = TaggingPresets.getMatchingPresets(Collections.singleton(TaggingPresetType.NODE),
+            Map.of("historic", "boundary_stone", "inscription", "bar"), false);
         assertEquals(1, presets.size());
         final TaggingPreset preset = presets.iterator().next();
@@ -68,5 +70,6 @@
             value = (JComponent) value.getComponent(0);
         }
-        final JosmTextField textField = assertInstanceOf(JosmTextField.class, value, "Until we support multiline editing, this should be a text field");
+        final JosmTextField textField = assertInstanceOf(JosmTextField.class, value,
+            "Until we support multiline editing, this should be a text field");
         textField.setText(toTest);
         text.addCommands(changeCommands);
