Remove useless Cue constructor

This commit is contained in:
Oliver Woodman 2017-02-20 13:09:40 +00:00
parent 5fbf109694
commit 539072dbf4

View file

@ -177,16 +177,6 @@ public class Cue {
*/
public final int windowColor;
/**
* Constructs an image cue whose type parameters are set to {@link #TYPE_UNSET} and whose
* dimension parameters are set to {@link #DIMEN_UNSET}.
*
* @param bitmap See {@link #bitmap}.
*/
public Cue(Bitmap bitmap) {
this(bitmap, DIMEN_UNSET, TYPE_UNSET, DIMEN_UNSET, TYPE_UNSET, DIMEN_UNSET);
}
/**
* Creates an image cue.
*