revert content-type generics

// FREEBIE
master
Jake McGinty 2014-10-22 19:27:35 -07:00
parent 9768de2d5e
commit 34aece0b43
3 changed files with 0 additions and 15 deletions

View File

@ -38,11 +38,6 @@ public class AudioSlide extends Slide {
super(context, part);
}
@Override
public String getContentType() {
return "audio/*";
}
public AudioSlide(Context context, Uri uri) throws IOException, MediaTooLargeException {
super(context, constructPartFromUri(context, uri));
}

View File

@ -60,11 +60,6 @@ public class ImageSlide extends Slide {
super(context, masterSecret, part);
}
@Override
public String getContentType() {
return "image/*";
}
public ImageSlide(Context context, Uri uri) throws IOException, BitmapDecodingException {
super(context, constructPartFromUri(context, uri));
}

View File

@ -39,11 +39,6 @@ public class VideoSlide extends Slide {
super(context, part);
}
@Override
public String getContentType() {
return "video/*";
}
public VideoSlide(Context context, Uri uri) throws IOException, MediaTooLargeException {
super(context, constructPartFromUri(context, uri));
}