Dropbox: remove redundant Entry construction.

Change-Id: I55d8da82acea7f1cf0a69912fe5d4d46d704b570
This commit is contained in:
Brad Fitzpatrick
2010-06-14 08:58:26 -07:00
parent f1cefa9167
commit 14418945bd

View File

@@ -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 {