Commit 3fa2133c authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Remove unnecessary "this".

parent c7c6611c
...@@ -19,13 +19,13 @@ fun View.setVisibility(value: Boolean) { ...@@ -19,13 +19,13 @@ fun View.setVisibility(value: Boolean) {
} }
var TextView.textContent: String var TextView.textContent: String
get() = this.text.toString() get() = text.toString()
set(value) { set(value) {
this.text = value text = value
} }
var TextView.hintContent: String var TextView.hintContent: String
get() = this.hint.toString() get() = hint.toString()
set(value) { set(value) {
this.text = value text = value
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment