[android] Fix strokeLinecap & strokeLinejoin error messages

This commit is contained in:
Mikael Sand
2019-07-25 13:14:39 +03:00
parent a7b18be4d5
commit 98d60adbaa
@@ -220,7 +220,7 @@ abstract public class RenderableView extends VirtualView {
break;
default:
throw new JSApplicationIllegalArgumentException(
"strokeLinecap " + this.strokeLinecap + " unrecognized");
"strokeLinecap " + strokeLinecap + " unrecognized");
}
invalidate();
}
@@ -239,7 +239,7 @@ abstract public class RenderableView extends VirtualView {
break;
default:
throw new JSApplicationIllegalArgumentException(
"strokeLinejoin " + this.strokeLinejoin + " unrecognized");
"strokeLinejoin " + strokeLinejoin + " unrecognized");
}
invalidate();
}