File tree 1 file changed +3
-0
lines changed
kotlinx-coroutines-debug/src
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ public object DebugProbes {
51
51
*/
52
52
public var sanitizeStackTraces: Boolean
53
53
get() = DebugProbesImpl .sanitizeStackTraces
54
+ @Suppress(" INVISIBLE_SETTER" ) // do not remove the INVISIBLE_SETTER suppression: required in k2
54
55
set(value) {
55
56
DebugProbesImpl .sanitizeStackTraces = value
56
57
}
@@ -66,6 +67,7 @@ public object DebugProbes {
66
67
*/
67
68
public var enableCreationStackTraces: Boolean
68
69
get() = DebugProbesImpl .enableCreationStackTraces
70
+ @Suppress(" INVISIBLE_SETTER" ) // do not remove the INVISIBLE_SETTER suppression: required in k2
69
71
set(value) {
70
72
DebugProbesImpl .enableCreationStackTraces = value
71
73
}
@@ -82,6 +84,7 @@ public object DebugProbes {
82
84
*/
83
85
public var ignoreCoroutinesWithEmptyContext: Boolean
84
86
get() = DebugProbesImpl .ignoreCoroutinesWithEmptyContext
87
+ @Suppress(" INVISIBLE_SETTER" ) // do not remove the INVISIBLE_SETTER suppression: required in k2
85
88
set(value) {
86
89
DebugProbesImpl .ignoreCoroutinesWithEmptyContext = value
87
90
}
You can’t perform that action at this time.
0 commit comments