Skip to content

Commit

Permalink
revert content-type generics
Browse files Browse the repository at this point in the history
// FREEBIE
  • Loading branch information
mcginty committed Oct 23, 2014
1 parent 9768de2 commit 34aece0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
5 changes: 0 additions & 5 deletions src/org/thoughtcrime/securesms/mms/AudioSlide.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ public AudioSlide(Context context, PduPart part) {
super(context, part);
}

@Override
public String getContentType() {
return "audio/*";
}

public AudioSlide(Context context, Uri uri) throws IOException, MediaTooLargeException {
super(context, constructPartFromUri(context, uri));
}
Expand Down
5 changes: 0 additions & 5 deletions src/org/thoughtcrime/securesms/mms/ImageSlide.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ public ImageSlide(Context context, MasterSecret masterSecret, PduPart part) {
super(context, masterSecret, part);
}

@Override
public String getContentType() {
return "image/*";
}

public ImageSlide(Context context, Uri uri) throws IOException, BitmapDecodingException {
super(context, constructPartFromUri(context, uri));
}
Expand Down
5 changes: 0 additions & 5 deletions src/org/thoughtcrime/securesms/mms/VideoSlide.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ public VideoSlide(Context context, PduPart part) {
super(context, part);
}

@Override
public String getContentType() {
return "video/*";
}

public VideoSlide(Context context, Uri uri) throws IOException, MediaTooLargeException {
super(context, constructPartFromUri(context, uri));
}
Expand Down

0 comments on commit 34aece0

Please sign in to comment.