Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e712ee3f authored by Joe Onorato's avatar Joe Onorato
Browse files

Take ctate's suggestions from 9008.

parent bbdf3caf
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -76,11 +76,10 @@ class WallpaperService extends IWallpaperService.Stub {
            WALLPAPER_DIR.getAbsolutePath(), CREATE | CLOSE_WRITE | DELETE | DELETE_SELF) {
                @Override
                public void onEvent(int event, String path) {
                    synchronized (mLock) {
                    if (path == null) {
                        return;
                    }

                    synchronized (mLock) {
                        // changing the wallpaper means we'll need to back up the new one
                        long origId = Binder.clearCallingIdentity();
                        BackupManager bm = new BackupManager(mContext);
@@ -104,11 +103,9 @@ class WallpaperService extends IWallpaperService.Stub {
    public WallpaperService(Context context) {
        if (Config.LOGD) Log.d(TAG, "WallpaperService startup");
        mContext = context;
        if (!WALLPAPER_DIR.exists()) {
        WALLPAPER_DIR.mkdirs();
        }
        mWallpaperObserver.startWatching();
        loadSettingsLocked();
        mWallpaperObserver.startWatching();
    }
    
    @Override