Skip to content

Commit

Permalink
Lint (Love you Rohan)
Browse files Browse the repository at this point in the history
  • Loading branch information
baronhsieh2005 committed Sep 1, 2024
1 parent a10c81a commit 0d6b33a
Showing 1 changed file with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,18 @@ class NewsFragment : ListFragment() {
@JvmStatic val CUSTOM_TAB_PACKAGE_NAME = "com.android.chrome"
}

private var mListView: ListView? = null
private var mCustomTabsClient: CustomTabsClient? = null
private lateinit var mActivity: MainActivity
private var customTabsIntent: CustomTabsIntent? = null
private var share: Intent? = null
private var session: CustomTabsSession? = null
private var _binding: FragmentNewsBinding? = null
private var builder: CustomTabsIntent.Builder? = null
private var connection: NewsCustomTabsServiceConnection? = null
private var customTabsIntent: CustomTabsIntent? = null
private var isCustomTabsSupported: Boolean = false
private var mCustomTabsClient: CustomTabsClient? = null
private var mListView: ListView? = null
private var session: CustomTabsSession? = null
private var share: Intent? = null
private lateinit var mActivity: MainActivity
private lateinit var sharedPreferences: SharedPreferences

private var connection: NewsCustomTabsServiceConnection? = null


private var _binding: FragmentNewsBinding? = null
val binding get() = _binding!!

internal inner class CustomListAdapter(
Expand Down

0 comments on commit 0d6b33a

Please sign in to comment.