We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a14372e commit feb85f5Copy full SHA for feb85f5
1 file changed
jooby-raml/src/main/java/org/jooby/internal/raml/RamlType.java
@@ -204,7 +204,7 @@ private static RamlType simpleParse(final Type type) {
204
enums.add(((Enum) value).name());
205
}
206
complex.values = enums;
207
- } else if(UUID.class.isAssignableFrom(rawType)){
+ } else if (UUID.class.isAssignableFrom(rawType)) {
208
complex = new RamlType("string");
209
complex.name = "uuid";
210
complex.pattern = "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$";
0 commit comments