Skip to content

Commit

Permalink
Fix BackgroundFill class extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
mircoianese committed Aug 19, 2024
1 parent 44e1a1b commit a2a5b3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import java.util.Arrays;

public class BackgroundFillFreeformGradient extends BackgroundType {
public class BackgroundFillFreeformGradient extends BackgroundFill {

public static final String TYPE = "freeform_gradient";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import java.util.Objects;

public class BackgroundFillGradient extends BackgroundType {
public class BackgroundFillGradient extends BackgroundFill {

public static final String TYPE = "gradient";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import java.util.Objects;

public class BackgroundFillSolid extends BackgroundType {
public class BackgroundFillSolid extends BackgroundFill {

public static final String TYPE = "solid";

Expand Down

0 comments on commit a2a5b3d

Please sign in to comment.