Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 655c20d

Browse files
committed
仕様変更でprivateなcompanion objectにアクセスできなくなったため修正
1 parent 3b8d5fc commit 655c20d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/com/mapk/kmapper/SimpleKMapperTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class SimpleDstExt(
4848
arg2: String?,
4949
arg3: Number
5050
) : SimpleDst(arg1, arg2, arg3) {
51-
private companion object {
51+
companion object {
5252
@KConstructor
5353
fun factory(arg1: Int, arg2: String?, arg3: Number): SimpleDstExt {
5454
return SimpleDstExt(arg1, arg2, arg3)

0 commit comments

Comments
 (0)