Deprecate suppress annotation in favor of Suppress

This commit is contained in:
Denis Zharkov
2015-09-01 16:32:43 +03:00
parent 11fed1674e
commit bbc192fda5
140 changed files with 152 additions and 153 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
package android.view
public open class View {
public open fun findViewById(@suppress("UNUSED_PARAMETER") id: Int): android.view.View = null!!
public open fun findViewById(@Suppress("UNUSED_PARAMETER") id: Int): android.view.View = null!!
}