Skip to content

Commit 7f77dc7

Browse files
committed
private -> protected
1 parent 1cf2610 commit 7f77dc7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/DoughnutOptionsBase.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
public abstract class DoughnutOptionsBase<O extends DoughnutOptionsBase<O, A>, A extends DoughnutAnimationBase<A>>
2525
extends Options<O, A>
2626
{
27-
private Number circumference;
28-
private Object cutout; // number or string
29-
private Object offset; // number or number[]
30-
private Object radius; // number or string
31-
private Number rotation;
32-
private Number spacing;
27+
protected Number circumference;
28+
protected Object cutout; // number or string
29+
protected Object offset; // number or number[]
30+
protected Object radius; // number or string
31+
protected Number rotation;
32+
protected Number spacing;
3333

3434
public Number getCircumference()
3535
{

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/animation/DoughnutAnimationBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
*/
2121
public abstract class DoughnutAnimationBase<T extends DoughnutAnimationBase<T>> extends Animation<T>
2222
{
23-
private Boolean animateRotate;
24-
private Boolean animateScale;
23+
protected Boolean animateRotate;
24+
protected Boolean animateScale;
2525

2626
public Boolean getAnimateRotate()
2727
{

0 commit comments

Comments
 (0)