Ignore fragment tag (it requires a different implementation)

This commit is contained in:
Yan Zhulanow
2015-04-02 21:34:02 +03:00
parent b4cfacbac7
commit df12331173
3 changed files with 2 additions and 14 deletions
@@ -18,12 +18,6 @@ val android.app.Activity.includeTag: ft<View, View?>
val android.app.Fragment.includeTag: ft<View, View?>
get() = getView().findViewById(0)
val android.app.Activity.fragmentTag: ft<View, View?>
get() = findViewById(0)
val android.app.Fragment.fragmentTag: ft<View, View?>
get() = getView().findViewById(0)
val android.app.Activity.`fun`: ft<TextView, TextView?>
get() = findViewById(0) as? TextView
@@ -15,9 +15,6 @@ import kotlin.internal.flexible.ft
val android.view.View.includeTag: ft<View, View?>
get() = findViewById(0)
val android.view.View.fragmentTag: ft<View, View?>
get() = findViewById(0)
val android.view.View.`fun`: ft<TextView, TextView?>
get() = findViewById(0) as? TextView