Skip to content

Commit

Permalink
private -> protected
Browse files Browse the repository at this point in the history
  • Loading branch information
AB-xdev committed Dec 6, 2024
1 parent 1cf2610 commit 7f77dc7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
public abstract class DoughnutOptionsBase<O extends DoughnutOptionsBase<O, A>, A extends DoughnutAnimationBase<A>>
extends Options<O, A>
{
private Number circumference;
private Object cutout; // number or string
private Object offset; // number or number[]
private Object radius; // number or string
private Number rotation;
private Number spacing;
protected Number circumference;
protected Object cutout; // number or string
protected Object offset; // number or number[]
protected Object radius; // number or string
protected Number rotation;
protected Number spacing;

public Number getCircumference()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
*/
public abstract class DoughnutAnimationBase<T extends DoughnutAnimationBase<T>> extends Animation<T>
{
private Boolean animateRotate;
private Boolean animateScale;
protected Boolean animateRotate;
protected Boolean animateScale;

public Boolean getAnimateRotate()
{
Expand Down

0 comments on commit 7f77dc7

Please sign in to comment.