mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-28 13:03:12 +00:00
[android] Fix strokeLinecap & strokeLinejoin error messages
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user