android: remove dead code

Change-Id: I6526020829ac5efc62c2ad0e3cae98a777748780
This commit is contained in:
Brad Fitzpatrick 2013-01-27 13:04:31 -08:00
parent ba9d9f2a88
commit 9b7bd9c7ae
1 changed files with 0 additions and 7 deletions

View File

@ -469,13 +469,6 @@ public class UploadService extends Service {
}
}
private String getSha1OfUri(Uri uri, ParcelFileDescriptor pfd) {
long statSize = pfd.getStatSize();
String sha1 = Util.getSha1(pfd.getFileDescriptor());
Log.d(TAG, "Uncached sha1 for " + uri + ": " + statSize + " bytes, " + sha1);
return sha1;
}
private void incrementBlobsToDigest(int size) throws RemoteException {
synchronized (UploadService.this) {
mBlobsToDigest += size;