Skip to content

Commit 5025c0b

Browse files
authored
Change Setup to SetUp in code ex names (#520)
Change-Id: I97d00761513296058cdd6f9e49fa43a4ce7bb922
1 parent c5aec79 commit 5025c0b

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

google-ads-examples/src/main/java/com/google/ads/googleads/examples/remarketing/SetupAdvancedRemarketing.java renamed to google-ads-examples/src/main/java/com/google/ads/googleads/examples/remarketing/SetUpAdvancedRemarketing.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747
* Creates a rule-based user list defined by an expression rule for users who have either checked
4848
* out in November or December OR visited the checkout page with more than one item in their cart.
4949
*/
50-
public class SetupAdvancedRemarketing {
50+
public class SetUpAdvancedRemarketing {
5151

52-
private static class SetupAdvancedRemarketingParams extends CodeSampleParams {
52+
private static class SetUpAdvancedRemarketingParams extends CodeSampleParams {
5353

5454
@Parameter(names = ArgumentNames.CUSTOMER_ID, required = true)
5555
private Long customerId;
5656
}
5757

5858
public static void main(String[] args) {
59-
SetupAdvancedRemarketingParams params = new SetupAdvancedRemarketingParams();
59+
SetUpAdvancedRemarketingParams params = new SetUpAdvancedRemarketingParams();
6060
if (!params.parseArguments(args)) {
6161

6262
// Either pass the required parameters for this example on the command line, or insert them
@@ -77,7 +77,7 @@ public static void main(String[] args) {
7777
}
7878

7979
try {
80-
new SetupAdvancedRemarketing().runExample(googleAdsClient, params.customerId);
80+
new SetUpAdvancedRemarketing().runExample(googleAdsClient, params.customerId);
8181
} catch (GoogleAdsException gae) {
8282
// GoogleAdsException is the base class for most exceptions thrown by an API request.
8383
// Instances of this exception have a message and a GoogleAdsFailure that contains a

google-ads-examples/src/main/java/com/google/ads/googleads/examples/remarketing/SetupRemarketing.java renamed to google-ads-examples/src/main/java/com/google/ads/googleads/examples/remarketing/SetUpRemarketing.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
* operations consecutively, and all of the operations contained herein are meant of for
6767
* illustrative purposes.
6868
*/
69-
public class SetupRemarketing {
69+
public class SetUpRemarketing {
7070

7171
private static final int PAGE_SIZE = 1000;
7272

73-
private static class SetupRemarketingParams extends CodeSampleParams {
73+
private static class SetUpRemarketingParams extends CodeSampleParams {
7474

7575
@Parameter(names = ArgumentNames.CUSTOMER_ID, required = true)
7676
private Long customerId;
@@ -87,7 +87,7 @@ private static class SetupRemarketingParams extends CodeSampleParams {
8787
}
8888

8989
public static void main(String[] args) {
90-
SetupRemarketingParams params = new SetupRemarketingParams();
90+
SetUpRemarketingParams params = new SetUpRemarketingParams();
9191
if (!params.parseArguments(args)) {
9292

9393
// Either pass the required parameters for this example on the command line, or insert them
@@ -113,7 +113,7 @@ public static void main(String[] args) {
113113
}
114114

115115
try {
116-
new SetupRemarketing()
116+
new SetUpRemarketing()
117117
.runExample(
118118
googleAdsClient,
119119
params.customerId,

0 commit comments

Comments
 (0)