Skip to content

Instantly share code, notes, and snippets.

@florina-muntenescu
Created December 6, 2020 20:29
Show Gist options
  • Save florina-muntenescu/20eff1af9dc900ac91b2493747c0bdb3 to your computer and use it in GitHub Desktop.
Save florina-muntenescu/20eff1af9dc900ac91b2493747c0bdb3 to your computer and use it in GitHub Desktop.
/* Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 */
- val editor = sharedPreferences.edit()
- editor.putBoolean(SHOW_DELETED_WORDS_KEY, enable)
- editor.apply()
+ sharedPreferences.edit {
+ putBoolean(SHOW_DELETED_WORDS_KEY, enable)
+ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment