Skip to content

Commit

Permalink
fix formatting violation with spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yonkov-yonkov committed Oct 17, 2024
1 parent 0da0951 commit d4b5b56
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ public enum LifecycleType {
@JsonCreator
public static LifecycleType from(String s) {
switch (s.toLowerCase()) {
case "buildpack":
return BUILDPACK;
case "docker":
return DOCKER;
case "kpack":
return KPACK;
case "cnb":
return CNB;
default:
throw new IllegalArgumentException(String.format("Unknown lifecycle type: %s", s));
case "buildpack":
return BUILDPACK;
case "docker":
return DOCKER;
case "kpack":
return KPACK;
case "cnb":
return CNB;
default:
throw new IllegalArgumentException(String.format("Unknown lifecycle type: %s", s));
}
}

Expand Down

0 comments on commit d4b5b56

Please sign in to comment.