ui: Remove unnecessary non-null assertion in TAG fields

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-03-29 10:24:26 +05:30 committed by Jason A. Donenfeld
parent b00aacbc41
commit 03a838ba2d
10 changed files with 10 additions and 10 deletions

View File

@ -88,7 +88,7 @@ class Application : android.app.Application(), OnSharedPreferenceChangeListener
companion object {
val USER_AGENT = String.format(Locale.ENGLISH, "WireGuard/%s (Android %d; %s; %s; %s %s; %s)", BuildConfig.VERSION_NAME, Build.VERSION.SDK_INT, if (Build.SUPPORTED_ABIS.isNotEmpty()) Build.SUPPORTED_ABIS[0] else "unknown ABI", Build.BOARD, Build.MANUFACTURER, Build.MODEL, Build.FINGERPRINT)
private val TAG = "WireGuard/${Application::class.simpleName!!}"
private val TAG = "WireGuard/${Application::class.simpleName}"
private lateinit var weakSelf: WeakReference<Application>
@JvmStatic

View File

@ -29,6 +29,6 @@ class BootShutdownReceiver : BroadcastReceiver() {
}
companion object {
private val TAG = "WireGuard/${BootShutdownReceiver::class.simpleName!!}"
private val TAG = "WireGuard/${BootShutdownReceiver::class.simpleName}"
}
}

View File

@ -153,6 +153,6 @@ class QuickTileService : TileService() {
}
companion object {
private val TAG = "WireGuard/${QuickTileService::class.simpleName!!}"
private val TAG = "WireGuard/${QuickTileService::class.simpleName}"
}
}

View File

@ -39,6 +39,6 @@ class TunnelToggleActivity : AppCompatActivity() {
}
companion object {
private val TAG = "WireGuard/${TunnelToggleActivity::class.simpleName!!}"
private val TAG = "WireGuard/${TunnelToggleActivity::class.simpleName}"
}
}

View File

@ -77,6 +77,6 @@ class FileConfigStore(private val context: Context) : ConfigStore {
}
companion object {
private val TAG = "WireGuard/${FileConfigStore::class.simpleName!!}"
private val TAG = "WireGuard/${FileConfigStore::class.simpleName}"
}
}

View File

@ -103,6 +103,6 @@ abstract class BaseFragment : Fragment(), OnSelectedTunnelChangedListener {
companion object {
private const val REQUEST_CODE_VPN_PERMISSION = 23491
private val TAG = "WireGuard/${BaseFragment::class.simpleName!!}"
private val TAG = "WireGuard/${BaseFragment::class.simpleName}"
}
}

View File

@ -229,6 +229,6 @@ class TunnelEditorFragment : BaseFragment(), AppExclusionListener {
companion object {
private const val KEY_LOCAL_CONFIG = "local_config"
private const val KEY_ORIGINAL_NAME = "original_name"
private val TAG = "WireGuard/${TunnelEditorFragment::class.simpleName!!}"
private val TAG = "WireGuard/${TunnelEditorFragment::class.simpleName}"
}
}

View File

@ -397,6 +397,6 @@ class TunnelListFragment : BaseFragment() {
const val REQUEST_IMPORT = 1
private const val REQUEST_TARGET_FRAGMENT = 2
private const val CHECKED_ITEMS = "CHECKED_ITEMS"
private val TAG = "WireGuard/${TunnelListFragment::class.simpleName!!}"
private val TAG = "WireGuard/${TunnelListFragment::class.simpleName}"
}
}

View File

@ -91,6 +91,6 @@ class ZipExporterPreference(context: Context, attrs: AttributeSet?) : Preference
}
companion object {
private val TAG = "WireGuard/${ZipExporterPreference::class.simpleName!!}"
private val TAG = "WireGuard/${ZipExporterPreference::class.simpleName}"
}
}

View File

@ -22,6 +22,6 @@ enum class ExceptionLoggers(private val priority: Int) : BiConsumer<Any?, Throwa
}
companion object {
private val TAG = "WireGuard/${ExceptionLoggers::class.simpleName!!}"
private val TAG = "WireGuard/${ExceptionLoggers::class.simpleName}"
}
}