Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
chore: release gapic-generator-java v1.0.13 (#121)
Browse files Browse the repository at this point in the history
Committer: @miraleung
PiperOrigin-RevId: 379784268

Source-Link: googleapis/googleapis@551681f

Source-Link: googleapis/googleapis-gen@478f365
  • Loading branch information
gcf-owl-bot[bot] committed Jun 24, 2021
1 parent 3a28425 commit 8c3890c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Expand Up @@ -181,8 +181,8 @@ public Builder setCustomer(String customer) {
}

private Builder(CustomerName customerName) {
account = customerName.account;
customer = customerName.customer;
this.account = customerName.account;
this.customer = customerName.customer;
}

public CustomerName build() {
Expand Down
Expand Up @@ -215,9 +215,9 @@ public Builder setEntitlement(String entitlement) {
}

private Builder(EntitlementName entitlementName) {
account = entitlementName.account;
customer = entitlementName.customer;
entitlement = entitlementName.entitlement;
this.account = entitlementName.account;
this.customer = entitlementName.customer;
this.entitlement = entitlementName.entitlement;
}

public EntitlementName build() {
Expand Down
Expand Up @@ -180,8 +180,8 @@ public Builder setOffer(String offer) {
}

private Builder(OfferName offerName) {
account = offerName.account;
offer = offerName.offer;
this.account = offerName.account;
this.offer = offerName.offer;
}

public OfferName build() {
Expand Down
Expand Up @@ -158,7 +158,7 @@ public Builder setProduct(String product) {
}

private Builder(ProductName productName) {
product = productName.product;
this.product = productName.product;
}

public ProductName build() {
Expand Down
Expand Up @@ -180,8 +180,8 @@ public Builder setSku(String sku) {
}

private Builder(SkuName skuName) {
product = skuName.product;
sku = skuName.sku;
this.product = skuName.product;
this.sku = skuName.sku;
}

public SkuName build() {
Expand Down

0 comments on commit 8c3890c

Please sign in to comment.