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

Commit cf0ac960 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

fix coding style

parent c9ba5cf7
Loading
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -758,16 +758,18 @@ public class ObserverService extends Service implements OnRemoteOperationListene
            if (!fileState.hasBeenSynchronizedOnce()) {
                continue;
            }

            final File file = new File(fileState.getLocalPath());

            if (file.exists()) {
                Log.w(TAG, file.getAbsolutePath() + "The file still exist. There is a problem!");
            } else {
                continue;
            }

            Log.i(TAG, "Add remove SyncRequest for file " + file.getAbsolutePath());
            this.syncRequests.put(fileState.getId(), new SyncRequest(fileState, SyncRequest.Type.REMOTE_DELETE));
        }
    }
    }
    /* end of methods related to device Scanning */

    @Nullable