Remove unused var
parent
884e70e5e6
commit
fb3045d6c9
|
@ -1,7 +1,6 @@
|
||||||
package gallery.memories.service;
|
package gallery.memories.service;
|
||||||
|
|
||||||
import android.app.DownloadManager;
|
import android.app.DownloadManager;
|
||||||
import android.content.ContentResolver;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
|
@ -100,9 +99,6 @@ public class DownloadService {
|
||||||
}
|
}
|
||||||
Uri uri = Uri.parse(sUri);
|
Uri uri = Uri.parse(sUri);
|
||||||
|
|
||||||
// Get MIME type
|
|
||||||
ContentResolver cR = mActivity.getContentResolver();
|
|
||||||
|
|
||||||
// Create sharing intent
|
// Create sharing intent
|
||||||
Intent intent = new Intent(Intent.ACTION_SEND);
|
Intent intent = new Intent(Intent.ACTION_SEND);
|
||||||
intent.setType(mActivity.getContentResolver().getType(uri));
|
intent.setType(mActivity.getContentResolver().getType(uri));
|
||||||
|
|
Loading…
Reference in New Issue