Skip to content

Commit 65ec4d8

Browse files
committed
Remove some unnecessary unstable API suppressions
1 parent f2be837 commit 65ec4d8

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/main/kotlin/platform/mixin/expression/gui/FlowDiagram.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ private suspend fun addGraphContent(
253253
}
254254

255255
for (group in flowGraph) {
256-
@Suppress("UnstableApiUsage")
257256
checkCanceled()
258257
val cells = mutableListOf<mxCell>()
259258
addFlow(group.root, null, cells::add)
@@ -274,7 +273,6 @@ private suspend fun layOutGraph(
274273
var maxY = 0.0
275274
var lastLine: Int? = null
276275
for ((group, list) in groupedCells) {
277-
@Suppress("UnstableApiUsage")
278276
checkCanceled()
279277

280278
val (targetLeft, targetTop) = if (group.lineNumber == lastLine) {

src/main/kotlin/platform/mixin/expression/gui/FlowGraph.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ class FlowGraph(val groups: SortedSet<FlowGroup>, val flowMap: FlowMap, val allN
156156
if (!flow.isRoot) {
157157
continue
158158
}
159-
@Suppress("UnstableApiUsage")
160159
checkCanceled()
161160

162161
val node = FlowNode(flow, project, clazz, method, allNodes)

0 commit comments

Comments
 (0)