diff --git a/installer/src/main/java/com/looker/installer/InstallManager.kt b/installer/src/main/java/com/looker/installer/InstallManager.kt index e4a7918e2..81a582fba 100644 --- a/installer/src/main/java/com/looker/installer/InstallManager.kt +++ b/installer/src/main/java/com/looker/installer/InstallManager.kt @@ -116,12 +116,3 @@ class InstallManager( } } } - -data class InstallerQueueState( - val currentItem: InstallItemState, - val queued: Set -) { - companion object { - val EMPTY = InstallerQueueState(InstallItemState.EMPTY, emptySet()) - } -}