mirror of https://github.com/apache/poi.git
sonar fix
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735514 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
93122ff358
commit
9fe1cea901
|
@ -38,8 +38,8 @@ class PathGradientPaint implements Paint {
|
|||
}
|
||||
|
||||
public PathGradientPaint(Color colors[], float fractions[], int capStyle, int joinStyle) {
|
||||
this.colors = colors;
|
||||
this.fractions = fractions;
|
||||
this.colors = colors.clone();
|
||||
this.fractions = fractions.clone();
|
||||
this.capStyle = capStyle;
|
||||
this.joinStyle = joinStyle;
|
||||
|
||||
|
|
Loading…
Reference in New Issue