From 2b37d4c6622181a7a0eacd3a2402bf40bc0279a0 Mon Sep 17 00:00:00 2001 From: Daniil Borisovskii Date: Mon, 30 Sep 2019 21:25:13 +0300 Subject: [PATCH] FIxed comment codestyle --- .../components/tabbarnavigation/BottomNavigationFragment.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt b/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt index bc1acf2..d514716 100644 --- a/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt +++ b/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt @@ -75,8 +75,10 @@ abstract class BottomNavigationFragment : Fragment() { data class TabData( val viewControllerClass: Class>, 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 )