From 9e11dd29076c14e4d095c6c2dc288bb2a7a86e99 Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Mon, 6 Jun 2016 11:04:52 -0700 Subject: [PATCH] Some more renamings --- .../src/main/java/com/microsoft/azure/Resource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-client-runtime/src/main/java/com/microsoft/azure/Resource.java b/azure-client-runtime/src/main/java/com/microsoft/azure/Resource.java index f108f9edbc938..b679fc29897e7 100644 --- a/azure-client-runtime/src/main/java/com/microsoft/azure/Resource.java +++ b/azure-client-runtime/src/main/java/com/microsoft/azure/Resource.java @@ -85,7 +85,7 @@ public String location() { * * @param location the location value to set */ - public void setLocation(String location) { + public void withLocation(String location) { this.location = location; } @@ -103,7 +103,7 @@ public Map getTags() { * * @param tags the tags value to set */ - public void setTags(Map tags) { + public void withTags(Map tags) { this.tags = tags; } } \ No newline at end of file