Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sdsantos committed Jul 2, 2020
1 parent 2164127 commit 859314a
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package tech.relaycorp.gateway.background


object CogRPC {
const val PORT = 21473
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import kotlinx.coroutines.delay
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.MutableStateFlow
import tech.relaycorp.gateway.common.Logging.logger
import tech.relaycorp.gateway.domain.courier.CargoDelivery
import java.util.logging.Level
import javax.inject.Inject
import kotlin.time.seconds
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package tech.relaycorp.gateway.domain.courier

import tech.relaycorp.relaynet.messages.Cargo
import java.io.InputStream
import javax.inject.Inject

Expand All @@ -9,5 +8,4 @@ class GenerateCargo

// TODO: implementation
suspend fun generate(): Iterable<InputStream> = emptyList()

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ class ProcessCargo

// TODO: implement
suspend fun process() {}

}
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
package tech.relaycorp.gateway.ui.common

Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package tech.relaycorp.gateway.ui.main

import android.content.Intent
import android.os.Bundle
import kotlinx.android.synthetic.main.activity_main.*
import tech.relaycorp.gateway.R
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
package tech.relaycorp.gateway.ui.sync

import kotlinx.coroutines.channels.sendBlocking
import tech.relaycorp.gateway.background.CourierConnectionObserver
import tech.relaycorp.gateway.ui.BaseViewModel
import tech.relaycorp.gateway.ui.common.Click
import tech.relaycorp.gateway.ui.main.PublishFlow
import javax.inject.Inject

class CourierConnectionViewModel
Expand All @@ -17,6 +14,5 @@ class CourierConnectionViewModel
val state get() = connectionObserver.observe()

init {

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.map
import kotlinx.coroutines.flow.onEach
import tech.relaycorp.gateway.R
import tech.relaycorp.gateway.background.CourierConnectionState
import tech.relaycorp.gateway.domain.courier.CourierSync
import tech.relaycorp.gateway.ui.BaseActivity
import javax.inject.Inject
Expand Down

0 comments on commit 859314a

Please sign in to comment.