Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. companion object {
  2. @Volatile var myThing: SomeThing? = null
  3. @Synchronized set(value: SomeThing?) {
  4. val i = myThing
  5. if (i != null) {
  6. field = i
  7. } else {
  8. field = value
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement