Skip to content

Commit

Permalink
servers plugin: remove debug panel internal annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
EmogurovAnton committed Sep 17, 2024
1 parent cf82010 commit 70ef78d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
package com.redmadrobot.debug.plugin.servers

import androidx.compose.runtime.Composable
import com.redmadrobot.debug.core.annotation.DebugPanelInternal
import com.redmadrobot.debug.core.data.DebugDataProvider
import com.redmadrobot.debug.core.extension.getPlugin
import com.redmadrobot.debug.core.internal.CommonContainer
import com.redmadrobot.debug.core.internal.PluginDependencyContainer
import com.redmadrobot.debug.core.internal.EditablePlugin
import com.redmadrobot.debug.core.internal.PluginDependencyContainer
import com.redmadrobot.debug.core.plugin.Plugin
import com.redmadrobot.debug.plugin.servers.data.model.DebugServer
import com.redmadrobot.debug.plugin.servers.data.model.DebugServerData
import com.redmadrobot.debug.plugin.servers.data.model.DebugStage
import com.redmadrobot.debug.plugin.servers.ui.ServersScreen
import kotlinx.coroutines.runBlocking

@OptIn(DebugPanelInternal::class)
public class ServersPlugin(
private val preInstalledServers: List<DebugServerData> = emptyList(),
) : Plugin(), EditablePlugin {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
package com.redmadrobot.debug.plugin.servers.data.model

import com.redmadrobot.debug.core.annotation.DebugPanelInternal

@DebugPanelInternal
public interface DebugServerData {
public val id: Int
public val name: String
Expand Down

0 comments on commit 70ef78d

Please sign in to comment.