File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
src/commonMain/kotlin/io/github/optimumcode/json/schema Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,6 @@ public abstract class io/github/optimumcode/json/schema/OutputCollector {
159
159
public static final fun basic ()Lio/github/optimumcode/json/schema/OutputCollector;
160
160
public static final fun detailed ()Lio/github/optimumcode/json/schema/OutputCollector;
161
161
public static final fun flag ()Lio/github/optimumcode/json/schema/OutputCollector;
162
- public abstract fun getOutput ()Ljava/lang/Object;
163
162
protected final fun transformError (Lio/github/optimumcode/json/schema/ValidationError;)Lio/github/optimumcode/json/schema/ValidationError;
164
163
public static final fun verbose ()Lio/github/optimumcode/json/schema/OutputCollector;
165
164
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public sealed class OutputCollector<T> private constructor(
28
28
public fun verbose (): OutputCollector <OutputUnit > = Verbose ()
29
29
}
30
30
31
- public abstract val output: T
31
+ internal abstract val output: T
32
32
private val transformerFunc: OutputErrorTransformer <T > =
33
33
parent?.let { p ->
34
34
when {
You can’t perform that action at this time.
0 commit comments