Skip to content
This repository has been archived by the owner on Nov 14, 2018. It is now read-only.

Commit

Permalink
add newlines at the end of files (mostly for pipeline retrigger)
Browse files Browse the repository at this point in the history
  • Loading branch information
fada21 committed Apr 26, 2018
1 parent 9289e61 commit fd55e68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ class AdapterViewTest {
}
}
}
}
}
6 changes: 3 additions & 3 deletions src/main/java/androidx/core/widget/AdapterView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ inline fun <T> AdapterView<*>.onItemLongClick(crossinline onItemLongClick: (item
}

/**
* Simple use case (default empty `onNothingSelected` set):
* Simple use case (empty `onNothingSelected` default provided):
* ```kotlin
* spinner.onItemSelected { parent, _, position, _ ->
* val item = parent.getItemAtPosition(position)
Expand Down Expand Up @@ -82,7 +82,7 @@ inline fun AdapterView<*>.onItemSelected(
* Sets selection listener with automatic item casting
* (ClassCastException will be thrown if adapter's item type does not match)
*
* Simple use case (default empty `onNothingSelected` set):
* Simple use case (empty `onNothingSelected` default provided):
* ```kotlin
* spinner.onItemSelected { item: T -> ??? }
* ```
Expand Down Expand Up @@ -110,4 +110,4 @@ inline fun <T> AdapterView<*>.onItemSelected(
onItemSelected(parent.getItemAtPosition(position) as T)
}
}
}
}

0 comments on commit fd55e68

Please sign in to comment.