Skip to content
Snippets Groups Projects
Commit 750fbd03 authored by Mohamed Metwalli's avatar Mohamed Metwalli
Browse files

Remove named param

parent f63e29bf
No related branches found
No related tags found
No related merge requests found
...@@ -15,25 +15,25 @@ object DiaryData { ...@@ -15,25 +15,25 @@ object DiaryData {
ListItem.Data( ListItem.Data(
R.drawable.ic_contact_diary_person_item, R.drawable.ic_contact_diary_person_item,
"Max Mustermann", "Max Mustermann",
type = ListItem.Type.PERSON ListItem.Type.PERSON
), ),
ListItem.Data( ListItem.Data(
R.drawable.ic_contact_diary_person_item, R.drawable.ic_contact_diary_person_item,
"Erika Mustermann", "Erika Mustermann",
type = ListItem.Type.PERSON ListItem.Type.PERSON
), ),
ListItem.Data( ListItem.Data(
R.drawable.ic_contact_diary_location, R.drawable.ic_contact_diary_location,
"Fitnessstudio", "Fitnessstudio",
type = ListItem.Type.LOCATION ListItem.Type.LOCATION
), ),
ListItem.Data( ListItem.Data(
R.drawable.ic_contact_diary_location, R.drawable.ic_contact_diary_location,
"Supermarket", "Supermarket",
type = ListItem.Type.LOCATION ListItem.Type.LOCATION
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment