BayernMessenger/app/src/main/java/im/vector/riotredesign/core/platform/RiotFragment.kt

12 lines
208 B
Kotlin
Raw Normal View History

2018-10-03 15:56:33 +00:00
package im.vector.riotredesign.core.platform
import com.airbnb.mvrx.BaseMvRxFragment
abstract class RiotFragment : BaseMvRxFragment() {
override fun invalidate() {
//no-ops by default
}
2018-10-03 15:56:33 +00:00
}