* commit 'e182bfd4dcf35d5009bcae72356b999b5ead0433': Prevent NPE when cloning gradients Bug #10436856
This commit is contained in:
@@ -102,8 +102,8 @@ public class LinearGradient extends Shader {
|
||||
final LinearGradient copy;
|
||||
switch (mType) {
|
||||
case TYPE_COLORS_AND_POSITIONS:
|
||||
copy = new LinearGradient(mX0, mY0, mX1, mY1, mColors.clone(), mPositions.clone(),
|
||||
mTileMode);
|
||||
copy = new LinearGradient(mX0, mY0, mX1, mY1, mColors.clone(),
|
||||
mPositions != null ? mPositions.clone() : null, mTileMode);
|
||||
break;
|
||||
case TYPE_COLOR_START_AND_COLOR_END:
|
||||
copy = new LinearGradient(mX0, mY0, mX1, mY1, mColor0, mColor1, mTileMode);
|
||||
|
||||
@@ -103,8 +103,8 @@ public class RadialGradient extends Shader {
|
||||
final RadialGradient copy;
|
||||
switch (mType) {
|
||||
case TYPE_COLORS_AND_POSITIONS:
|
||||
copy = new RadialGradient(mX, mY, mRadius, mColors.clone(), mPositions.clone(),
|
||||
mTileMode);
|
||||
copy = new RadialGradient(mX, mY, mRadius, mColors.clone(),
|
||||
mPositions != null ? mPositions.clone() : null, mTileMode);
|
||||
break;
|
||||
case TYPE_COLOR_CENTER_AND_COLOR_EDGE:
|
||||
copy = new RadialGradient(mX, mY, mRadius, mColor0, mColor1, mTileMode);
|
||||
|
||||
@@ -92,7 +92,8 @@ public class SweepGradient extends Shader {
|
||||
final SweepGradient copy;
|
||||
switch (mType) {
|
||||
case TYPE_COLORS_AND_POSITIONS:
|
||||
copy = new SweepGradient(mCx, mCy, mColors.clone(), mPositions.clone());
|
||||
copy = new SweepGradient(mCx, mCy, mColors.clone(),
|
||||
mPositions != null ? mPositions.clone() : null);
|
||||
break;
|
||||
case TYPE_COLOR_START_AND_COLOR_END:
|
||||
copy = new SweepGradient(mCx, mCy, mColor0, mColor1);
|
||||
|
||||
Reference in New Issue
Block a user