Skip to content

Commit

Permalink
Refactor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanth committed Apr 8, 2021
1 parent 71f45ba commit 55971ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
*.apk
*.ap_

.DS_Store

# Files for the dex VM
*.dex

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public SharePreference(Context context, String authority, String prefName) {
mContext = context;
mHandler = new Handler(context.getMainLooper());
mBaseUri = Uri.parse("content://" + authority).buildUpon().appendPath(prefName).build();
mListeners = new WeakHashMap<OnSharedPreferenceChangeListener, PreferenceContentObserver>();
mListeners = new WeakHashMap<>();
}

@Override
Expand Down

0 comments on commit 55971ac

Please sign in to comment.