Skip to content

Commit 70ef78d

Browse files
committed
servers plugin: remove debug panel internal annotation
1 parent cf82010 commit 70ef78d

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

plugins/plugin-servers/src/main/kotlin/com/redmadrobot/debug/plugin/servers/ServersPlugin.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
package com.redmadrobot.debug.plugin.servers
22

33
import androidx.compose.runtime.Composable
4-
import com.redmadrobot.debug.core.annotation.DebugPanelInternal
54
import com.redmadrobot.debug.core.data.DebugDataProvider
65
import com.redmadrobot.debug.core.extension.getPlugin
76
import com.redmadrobot.debug.core.internal.CommonContainer
8-
import com.redmadrobot.debug.core.internal.PluginDependencyContainer
97
import com.redmadrobot.debug.core.internal.EditablePlugin
8+
import com.redmadrobot.debug.core.internal.PluginDependencyContainer
109
import com.redmadrobot.debug.core.plugin.Plugin
1110
import com.redmadrobot.debug.plugin.servers.data.model.DebugServer
1211
import com.redmadrobot.debug.plugin.servers.data.model.DebugServerData
1312
import com.redmadrobot.debug.plugin.servers.data.model.DebugStage
1413
import com.redmadrobot.debug.plugin.servers.ui.ServersScreen
1514
import kotlinx.coroutines.runBlocking
1615

17-
@OptIn(DebugPanelInternal::class)
1816
public class ServersPlugin(
1917
private val preInstalledServers: List<DebugServerData> = emptyList(),
2018
) : Plugin(), EditablePlugin {

plugins/plugin-servers/src/main/kotlin/com/redmadrobot/debug/plugin/servers/data/model/DebugServerData.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package com.redmadrobot.debug.plugin.servers.data.model
22

3-
import com.redmadrobot.debug.core.annotation.DebugPanelInternal
4-
5-
@DebugPanelInternal
63
public interface DebugServerData {
74
public val id: Int
85
public val name: String

0 commit comments

Comments
 (0)