Fixed Migration warnings under Kotlin header

This commit is contained in:
sonalyadav 2024-12-21 21:21:47 +05:30
parent 4dd16054ca
commit 406ebcabf0
13 changed files with 15 additions and 15 deletions

View file

@ -146,7 +146,7 @@ class LoginActivity : AccountAuthenticatorActivity() {
loginTwoFactor.removeTextChangedListener(textWatcher)
}
delegate.onDestroy()
loginClient?.cancel()
loginClient.cancel()
binding = null
super.onDestroy()
}

View file

@ -250,7 +250,7 @@ class CustomSelectorActivity :
val selectedImages: ArrayList<Image> =
result.data!!
.getParcelableArrayListExtra(CustomSelectorConstants.NEW_SELECTED_IMAGES)!!
viewModel?.selectedImages?.value = selectedImages
viewModel.selectedImages?.value = selectedImages
}
}

View file

@ -240,7 +240,7 @@ class DescriptionEditActivity :
applicationContext,
media,
updatedWikiText,
)?.subscribeOn(Schedulers.io())
).subscribeOn(Schedulers.io())
?.observeOn(AndroidSchedulers.mainThread())
?.subscribe(Consumer<Boolean> { s: Boolean? -> Timber.d("Descriptions are added.") })
?.let {

View file

@ -175,7 +175,7 @@ class OkHttpJsonApiClient @Inject constructor(
.build()
val response: Response = okHttpClient.newCall(request).execute()
if (response.body != null && response.isSuccessful) {
val json: String = response.body!!.string() ?: return@fromCallable null
val json: String = response.body!!.string()
try {
return@fromCallable gson.fromJson<UpdateAvatarResponse>(
json,

View file

@ -86,7 +86,7 @@ class FileProcessor
*/
fun getExifTagsToRedact(): Set<String> {
val prefManageEXIFTags =
defaultKvStore.getStringSet(Prefs.MANAGED_EXIF_TAGS) ?: emptySet()
defaultKvStore.getStringSet(Prefs.MANAGED_EXIF_TAGS)
val redactTags: Set<String> =
context.resources.getStringArray(R.array.pref_exifTag_values).toSet()
return redactTags - prefManageEXIFTags

View file

@ -14,7 +14,7 @@ data class UploadResult(
constructor(parcel: Parcel) : this(
parcel.readString() ?: "",
parcel.readString() ?: "",
parcel.readInt() ?: 0,
parcel.readInt(),
parcel.readString() ?: "",
) {
}

View file

@ -439,7 +439,7 @@ class UploadWorker(
username,
)
CommonsApplication
.instance!!
.instance
.clearApplicationData(appContext, logoutListener)
}
}

View file

@ -55,7 +55,7 @@ class CustomSelectorUtils {
val uploadableFile = PickedFiles.pickedExistingPicture(context, image.uri)
val exifInterface: ExifInterface? =
try {
ExifInterface(uploadableFile.file!!)
ExifInterface(uploadableFile.file)
} catch (e: IOException) {
Timber.e(e)
null

View file

@ -62,6 +62,6 @@ object DownloadUtils {
) {
val systemService =
activity.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager
systemService?.enqueue(req)
systemService.enqueue(req)
}
}

View file

@ -176,7 +176,7 @@ class WikidataEditService @Inject constructor(
SnakPartial(
"value",
MEDIA_LEGENDS.propertyName, MonoLingualText(
WikiBaseMonolingualTextValue(value!!, key!!)
WikiBaseMonolingualTextValue(value, key)
)
)
)

View file

@ -68,7 +68,7 @@ class BookmarkLocationControllerTest {
@Test
fun loadBookmarkedLocations() {
val bookmarkedLocations =
bookmarkLocationsController!!.loadFavoritesLocations()
bookmarkLocationsController.loadFavoritesLocations()
Assert.assertEquals(2, bookmarkedLocations.size.toLong())
}
}

View file

@ -50,7 +50,7 @@ class JsonKvStoreTest {
fun getJson() {
whenever(prefs.getString("key", null)).thenReturn(expected)
val result = store.getJson("key", Person::class.java)
val result = store.getJson<Person>("key")
Assert.assertEquals(testData, result)
}
@ -70,7 +70,7 @@ class JsonKvStoreTest {
fun getJsonHandlesMalformedJson() {
whenever(prefs.getString("key", null)).thenReturn("junk")
val result = store.getJson("key", Person::class.java)
val result = store.getJson<Person>("key")
Assert.assertNull(result)
}

View file

@ -305,7 +305,7 @@ class NearbyParentFragmentPresenterTest {
whenever(nearbyParentFragmentView.mapFocus).thenReturn(LatLng(2.0, 1.0, 0.0F))
// 111.19 km real distance, return false if 148306.444306 > currentLocationSearchRadius
NearbyController.currentLocationSearchRadius = 148306.0
val isClose = nearbyPresenter?.searchCloseToCurrentLocation()
val isClose = nearbyPresenter.searchCloseToCurrentLocation()
assertFalse(isClose!!.equals(false))
}
@ -317,7 +317,7 @@ class NearbyParentFragmentPresenterTest {
whenever(nearbyParentFragmentView.getCameraTarget()).thenReturn(LatLng(2.0, 1.0, 0.0F))
// 111.19 km real distance, return false if 148253.333 > currentLocationSearchRadius
NearbyController.currentLocationSearchRadius = 148307.0
val isClose = nearbyPresenter?.searchCloseToCurrentLocation()
val isClose = nearbyPresenter.searchCloseToCurrentLocation()
assertTrue(isClose!!)
}