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

Commit 6b9b8806 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick Committed by Android Git Automerger
Browse files

am 60e8c33d: Merge "Dropbox: remove redundant Entry construction." into gingerbread

Merge commit '60e8c33d' into gingerbread-plus-aosp

* commit '60e8c33d':
  Dropbox: remove redundant Entry construction.
parents 184a3ff6 60e8c33d
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 {