Skip to content

Commit

Permalink
add back UUIDConverter which slipped through
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Dec 23, 2024
1 parent a6564e7 commit fd76e3b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
import jakarta.faces.convert.LongConverter;
import jakarta.faces.convert.NumberConverter;
import jakarta.faces.convert.ShortConverter;
import jakarta.faces.convert.UUIDConverter;
import jakarta.faces.event.PostConstructViewMapEvent;
import jakarta.faces.event.PreDestroyViewMapEvent;
import jakarta.faces.render.RenderKitFactory;
Expand Down Expand Up @@ -186,7 +187,8 @@ private void populateConverters(Document doc, String namespace, Element rootElem
{ LongConverter.CONVERTER_ID, LongConverter.class.getName() },
{ NumberConverter.CONVERTER_ID, NumberConverter.class.getName() },
{ ShortConverter.CONVERTER_ID, ShortConverter.class.getName() },
{ EnumConverter.CONVERTER_ID, EnumConverter.class.getName() }
{ EnumConverter.CONVERTER_ID, EnumConverter.class.getName() },
{ UUIDConverter.CONVERTER_ID, UUIDConverter.class.getName() }
};

appendNestedChildElements(doc, namespace, rootElement, "converter", new String[] { "converter-id", "converter-class" }, converters);
Expand Down

0 comments on commit fd76e3b

Please sign in to comment.