mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-30 22:34:02 +01:00 
			
		
		
		
	chore : lint fix
- Removed unused constants which were there in `Pref` - Removed unused parameter requireActivity from `Setting Fragment` Revert "chore : lint fix" This reverts commit 599203343f4c3c050b45e4ccf53fd23097818cc4.
This commit is contained in:
		
							parent
							
								
									038ae9acd4
								
							
						
					
					
						commit
						ce4252aed9
					
				
					 3 changed files with 2 additions and 10 deletions
				
			
		|  | @ -1,11 +1,7 @@ | |||
| package fr.free.nrw.commons.settings | ||||
| 
 | ||||
| object Prefs { | ||||
|     const val GLOBAL_PREFS = "fr.free.nrw.commons.preferences" | ||||
| 
 | ||||
|     const val TRACKING_ENABLED = "eventLogging" | ||||
|     const val DEFAULT_LICENSE = "defaultLicense" | ||||
|     const val UPLOADS_SHOWING = "uploadsShowing" | ||||
|     const val MANAGED_EXIF_TAGS = "managed_exif_tags" | ||||
|     const val DESCRIPTION_LANGUAGE = "languageDescription" | ||||
|     const val APP_UI_LANGUAGE = "appUiLanguage" | ||||
|  |  | |||
|  | @ -12,7 +12,6 @@ import fr.free.nrw.commons.theme.BaseActivity | |||
| class SettingsActivity : BaseActivity() { | ||||
| 
 | ||||
|     private lateinit var binding: ActivitySettingsBinding | ||||
| //    private var settingsDelegate: AppCompatDelegate? = null | ||||
| 
 | ||||
|     /** | ||||
|      * to be called when the activity starts | ||||
|  |  | |||
|  | @ -1,7 +1,6 @@ | |||
| package fr.free.nrw.commons.settings | ||||
| 
 | ||||
| import android.Manifest.permission | ||||
| import android.annotation.SuppressLint | ||||
| import android.app.Activity | ||||
| import android.app.Dialog | ||||
| import android.content.Context.MODE_PRIVATE | ||||
|  | @ -11,7 +10,6 @@ import android.net.Uri | |||
| import android.os.Bundle | ||||
| import android.text.Editable | ||||
| import android.text.TextWatcher | ||||
| import android.view.KeyEvent | ||||
| import android.view.View | ||||
| import android.widget.AdapterView | ||||
| import android.widget.Button | ||||
|  | @ -131,7 +129,7 @@ class SettingsFragment : PreferenceFragmentCompat() { | |||
|         inAppCameraLocationPref?.setOnPreferenceChangeListener { _, newValue -> | ||||
|             val isInAppCameraLocationTurnedOn = newValue as Boolean | ||||
|             if (isInAppCameraLocationTurnedOn) { | ||||
|                 createDialogsAndHandleLocationPermissions(requireActivity()) | ||||
|                 createDialogsAndHandleLocationPermissions() | ||||
|             } | ||||
|             true | ||||
|         } | ||||
|  | @ -256,7 +254,7 @@ class SettingsFragment : PreferenceFragmentCompat() { | |||
|      * | ||||
|      * @param activity | ||||
|      */ | ||||
|     private fun createDialogsAndHandleLocationPermissions(activity: Activity) { | ||||
|     private fun createDialogsAndHandleLocationPermissions() { | ||||
|         inAppCameraLocationPermissionLauncher.launch(arrayOf(permission.ACCESS_FINE_LOCATION)) | ||||
|     } | ||||
| 
 | ||||
|  | @ -284,7 +282,6 @@ class SettingsFragment : PreferenceFragmentCompat() { | |||
|         return object : PreferenceGroupAdapter(preferenceScreen) { | ||||
|             override fun onBindViewHolder(holder: PreferenceViewHolder, position: Int) { | ||||
|                 super.onBindViewHolder(holder, position) | ||||
|                 val preference = getItem(position) | ||||
|                 val iconFrame: View? = holder.itemView.findViewById(R.id.icon_frame) | ||||
|                 iconFrame?.visibility = View.GONE | ||||
|             } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Neel Doshi
						Neel Doshi