Skip to content

Commit 62c4f32

Browse files
committed
Minor correction
1 parent 67fe066 commit 62c4f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datamodel/odata/odata-core/src/main/java/com/sap/cloud/sdk/datamodel/odata/helper/ODataEntitySerializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private static boolean containsNestedChangedFields( final Object obj )
170170
if( !vdmComplex.getChangedFields().isEmpty() ) {
171171
return true;
172172
}
173-
for( Object complexField : vdmComplex.toMapOfFields().values() ) {
173+
for( final Object complexField : vdmComplex.toMapOfFields().values() ) {
174174
if( containsNestedChangedFields(complexField) ) {
175175
return true;
176176
}

0 commit comments

Comments
 (0)