FIxed comment codestyle

This commit is contained in:
Daniil Borisovskii 2019-09-30 21:25:13 +03:00
parent c173e7ad64
commit 2b37d4c662
1 changed files with 4 additions and 2 deletions

View File

@ -75,8 +75,10 @@ abstract class BottomNavigationFragment : Fragment() {
data class TabData(
val viewControllerClass: Class<out ViewController<*, *>>,
val viewControllerState: Parcelable,
//It can be useful in some cases when it is necessary to create ViewController
//with initial state every time when tab opens.
/**
* It can be useful in some cases when it is necessary to create ViewController
* with initial state every time when tab opens.
*/
val saveStateOnSwitching: Boolean = true
)