Fix typos for the word "Unsupported".

Bug: https://code.google.com/p/android/issues/detail?id=206490
Change-Id: Ie1b2c2b0960d8dd8c12ed06d84a16913cd057221
This commit is contained in:
Stephen Hines
2016-04-11 13:05:55 -07:00
parent ba23e45348
commit ad57e330ba
6 changed files with 7 additions and 7 deletions

View File

@@ -43,7 +43,7 @@ public final class ScriptIntrinsicBlur extends ScriptIntrinsic {
*/
public static ScriptIntrinsicBlur create(RenderScript rs, Element e) {
if ((!e.isCompatible(Element.U8_4(rs))) && (!e.isCompatible(Element.U8(rs)))) {
throw new RSIllegalArgumentException("Unsuported element type.");
throw new RSIllegalArgumentException("Unsupported element type.");
}
long id = rs.nScriptIntrinsicCreate(5, e.getID(rs));
ScriptIntrinsicBlur sib = new ScriptIntrinsicBlur(id, rs);