Skip to content

Commit

Permalink
Minor, local variable renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
tsegismont committed May 19, 2015
1 parent e8318b8 commit 90d2bd2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ public void createTenant(
asyncResponse.resume(response);
return;
}
URI created = uriInfo.getBaseUriBuilder().path("/tenants").build();
metricsService.createTenant(params).subscribe(new TenantCreatedObserver(asyncResponse, created));
URI location = uriInfo.getBaseUriBuilder().path("/tenants").build();
metricsService.createTenant(params).subscribe(new TenantCreatedObserver(asyncResponse, location));
}

@GET
Expand Down

0 comments on commit 90d2bd2

Please sign in to comment.