Skip to content
This repository was archived by the owner on Oct 28, 2022. It is now read-only.

Commit 701a417

Browse files
committed
ROO-3977: Solving problem with .class import
1 parent 81866cc commit 701a417

File tree

1 file changed

+2
-2
lines changed
  • addon-web-mvc-thymeleaf/addon/src/main/java/org/springframework/roo/addon/web/mvc/thymeleaf/addon

1 file changed

+2
-2
lines changed

addon-web-mvc-thymeleaf/addon/src/main/java/org/springframework/roo/addon/web/mvc/thymeleaf/addon/ThymeleafMetadata.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2026,8 +2026,8 @@ private MethodMetadata getInitBinderMethod(JavaType entity) {
20262026
body.appendFormalLine("binder.setDisallowedFields(\"%s\");", entityIdentifier);
20272027

20282028
for (Pair<RelationInfo, JpaEntityMetadata> item : compositionRelationOneToOne) {
2029-
body.appendFormalLine("binder.setDisallowedFields(\"%s.%s\");", item.getKey().fieldName,
2030-
item.getValue().getCurrentIndentifierField().getFieldName());
2029+
body.appendFormalLine("binder.setDisallowedFields(\"%s.%s\");", item.getKey().fieldName, item
2030+
.getValue().getCurrentIndentifierField().getFieldName());
20312031
}
20322032

20332033
body.appendFormalLine("// Register validators");

0 commit comments

Comments
 (0)