Skip to content

Commit

Permalink
make update actions freeze & unfreeze final
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Mar 1, 2024
1 parent c18c31b commit a72d678
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.sphere.sdk.carts.Cart;
import io.sphere.sdk.commands.UpdateActionImpl;

public class FreezeCart extends UpdateActionImpl<Cart> {
public final class FreezeCart extends UpdateActionImpl<Cart> {
private FreezeCart() {
super("freezeCart");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.sphere.sdk.carts.Cart;
import io.sphere.sdk.commands.UpdateActionImpl;

public class UnfreezeCart extends UpdateActionImpl<Cart> {
public final class UnfreezeCart extends UpdateActionImpl<Cart> {
private UnfreezeCart() {
super("unfreezeCart");
}
Expand Down

0 comments on commit a72d678

Please sign in to comment.