Guest User

Untitled

a guest
Jul 12th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. fun getString(@StringRes resId: Int): String {
  2. val context: Context? = SomeDependencyInjectionSystem()
  3. return if (context == null) {
  4. ""
  5. } else {
  6. context.getString(resId)
  7. }
  8. }
Add Comment
Please, Sign In to add comment