mirror of
				https://github.com/SimpleMobileTools/Simple-Contacts.git
				synced 2025-06-05 21:59:27 +02:00 
			
		
		
		
	remove a redundant variable
This commit is contained in:
		| @@ -250,8 +250,7 @@ class ContactsAdapter(activity: SimpleActivity, var contactItems: ArrayList<Cont | ||||
|     private fun setupView(view: View, contact: Contact) { | ||||
|         view.apply { | ||||
|             val fullName = contact.getFullName() | ||||
|             val nameText = if (textToHighlight.isEmpty()) fullName else fullName.highlightTextPart(textToHighlight, adjustedPrimaryColor) | ||||
|             contact_name.text = nameText | ||||
|             contact_name.text = if (textToHighlight.isEmpty()) fullName else fullName.highlightTextPart(textToHighlight, adjustedPrimaryColor) | ||||
|             contact_name.setTextColor(textColor) | ||||
|             contact_name.setPadding(if (showContactThumbnails) smallPadding else bigPadding, smallPadding, smallPadding, 0) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user