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

Commit 14418945 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick
Browse files

Dropbox: remove redundant Entry construction.

Change-Id: I55d8da82acea7f1cf0a69912fe5d4d46d704b570
parent f1cefa91
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ public class DropBoxManager {
        if (file == null) throw new NullPointerException();
        Entry entry = new Entry(tag, 0, file, flags);
        try {
            mService.add(new Entry(tag, 0, file, flags));
            mService.add(entry);
        } catch (RemoteException e) {
            // ignore
        } finally {