]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/dataclasses/PendingDialogDataClass.kt
Migrate the remaining classes to Kotlin. https://redmine.stoutner.com/issues/989
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dataclasses / PendingDialogDataClass.kt
index 87d59726d1ba6101870df3da276a13bd0c522a66..def56143d8a77f6e9b68089dd1f9ca9dd80bd3d8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2021-2022 Soren Stoutner <soren@stoutner.com>.
+ * Copyright 2021-2023 Soren Stoutner <soren@stoutner.com>.
  *
  * This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
  *
@@ -21,5 +21,5 @@ package com.stoutner.privacybrowser.dataclasses
 
 import androidx.fragment.app.DialogFragment
 
-// Define the pending dialogs data class.  The `@JvmField` notation can be remove once all the code has migrated to Kotlin.
-data class PendingDialogDataClass (@JvmField val dialogFragment: DialogFragment, @JvmField val tag: String)
+// Define the pending dialogs data class.
+data class PendingDialogDataClass (val dialogFragment: DialogFragment, val tag: String)