Skip to content

Commit

Permalink
m-m-m/marshall#4: changes and improvements for marshall refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Nov 19, 2023
1 parent ec7cc72 commit 003100a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import java.util.function.Consumer;

import io.github.mmm.marshall.JsonFormat;
import io.github.mmm.marshall.StandardFormat;
import io.github.mmm.marshall.StructuredTextFormat;
import io.github.mmm.ui.api.attribute.AttributeWriteValue;
import io.github.mmm.ui.api.event.action.UiActionReset;
Expand Down Expand Up @@ -39,7 +39,7 @@ public class JsonEditor extends UiCustomVerticalPanel implements AttributeWriteV
public JsonEditor(Consumer<Person> consumer) {

super();
this.jsonFormat = JsonFormat.of();
this.jsonFormat = StandardFormat.json();
UiFormPanel<Void> form = UiFormPanel.of();
this.jsonTextArea = UiTextArea.of("JSON");
this.jsonTextArea.setValue(JSON_DEFAULT);
Expand Down

0 comments on commit 003100a

Please sign in to comment.