mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove unnecessary abstract class in SaveSheetActivity
This commit is contained in:
parent
4c70c8621f
commit
b20f1ba522
1 changed files with 1 additions and 5 deletions
|
|
@ -34,13 +34,9 @@ import kotlinx.coroutines.launch
|
|||
import kotlin.time.Duration.Companion.seconds
|
||||
import kotlin.time.toJavaDuration
|
||||
|
||||
// Not sure why we need this class, but directly opening SaveSheetActivity
|
||||
// causes the app to crash.
|
||||
class SaveSheetActivity : SaveSheetActivityBase()
|
||||
|
||||
@AndroidEntryPoint
|
||||
@OptIn(ExperimentalMaterialApi::class)
|
||||
abstract class SaveSheetActivityBase : AppCompatActivity() {
|
||||
class SaveSheetActivity : AppCompatActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue