File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
main/kotlin/dev/krud/shapeshift
test/kotlin/dev/krud/shapeshift/transformer Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ class ShapeShiftBuilder {
196
196
NumberToShortMappingTransformer ().toRegistration(true ),
197
197
NumberToIntMappingTransformer ().toRegistration(true ),
198
198
ImplicitMappingTransformer ().toRegistration(false ),
199
- ImplicitCollectionMappingTransformer ().toRegistration(false ),
199
+ ImplicitCollectionMappingTransformer ().toRegistration(false )
200
200
)
201
201
}
202
202
}
Original file line number Diff line number Diff line change 10
10
11
11
package dev.krud.shapeshift.transformer
12
12
13
- import dev.krud.shapeshift.ShapeShift
14
13
import dev.krud.shapeshift.ShapeShiftBuilder
15
14
import dev.krud.shapeshift.transformer.base.MappingTransformerContext
16
15
import org.junit.jupiter.api.Test
@@ -428,6 +427,5 @@ class ShapeShiftTransformerTests {
428
427
val result = transformer.transform(context)
429
428
expectThat(result)
430
429
.isEqualTo(expectedResult)
431
-
432
430
}
433
431
}
You can’t perform that action at this time.
0 commit comments