Skip to content

fix(retail): add region tag for Java - Update remove fulfillment places #10114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

package product;

// [START retail_remove_fulfillment_places]

import static setup.SetupCleanup.createProduct;
import static setup.SetupCleanup.deleteProduct;
import static setup.SetupCleanup.getProduct;
Expand Down Expand Up @@ -82,3 +84,5 @@ public static void removeFulfillmentPlaces(String productName, String storeId)
}
}
}

// [END retail_remove_fulfillment_places]
Comment on lines +87 to +88
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider moving the // [END retail_remove_fulfillment_places] tag to line 86, removing the blank line before the closing bracket. This improves readability by keeping the tag visually associated with the class it's closing.

  }
}
// [END retail_remove_fulfillment_places]