Skip to content

Commit feb85f5

Browse files
committed
fix code style at raml module
1 parent a14372e commit feb85f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jooby-raml/src/main/java/org/jooby/internal/raml/RamlType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private static RamlType simpleParse(final Type type) {
204204
enums.add(((Enum) value).name());
205205
}
206206
complex.values = enums;
207-
} else if(UUID.class.isAssignableFrom(rawType)){
207+
} else if (UUID.class.isAssignableFrom(rawType)) {
208208
complex = new RamlType("string");
209209
complex.name = "uuid";
210210
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

Comments
 (0)