You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hll/dynamodb-mapper/dynamodb-mapper-codegen/src/main/kotlin/aws/sdk/kotlin/hll/dynamodbmapper/codegen/annotations/rendering/HighLevelRenderer.kt
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -57,11 +57,12 @@ internal class HighLevelRenderer(
57
57
val propName = requireNotNull(propType.declaration.qualifiedName).asString()
58
58
59
59
// If the property OR any of its arguments reference the annotated type
60
-
propName == name || propType.arguments.any { arg ->
61
-
val argType = arg.type?.resolve()
62
-
val argName = requireNotNull(argType?.declaration?.qualifiedName).asString()
63
-
argName == name
64
-
}
60
+
propName == name ||
61
+
propType.arguments.any { arg ->
62
+
val argType = arg.type?.resolve()
63
+
val argName = requireNotNull(argType?.declaration?.qualifiedName).asString()
Copy file name to clipboardExpand all lines: hll/dynamodb-mapper/dynamodb-mapper-codegen/src/main/kotlin/aws/sdk/kotlin/hll/dynamodbmapper/codegen/annotations/rendering/SchemaRenderer.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -217,7 +217,7 @@ internal class SchemaRenderer(
0 commit comments