Skip to content

Commit 6c0d84a

Browse files
author
Caitlin Bales (MSFT)
authored
Merge pull request #79 from microsoftgraph/iambmelt/caitbal-nitpicks
Iambmelt/caitbal nitpicks
2 parents e7fc09f + 237d854 commit 6c0d84a

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

Templates/Android/generated/BaseEntityReferenceRequest.java.tt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,25 +53,25 @@
5353
}
5454
<# } #>
5555
<# if (c.GetFeatures().CanUpdate) { #>
56-
/**
57-
* Puts the <#=TypeName(c)#>
58-
*
59-
* @param src<#=TypeName(c)#> The <#=TypeName(c)#> reference to PUT
60-
* @param callback The callback to be called after success or failure
61-
*/
56+
/**
57+
* Puts the <#=TypeName(c)#>
58+
*
59+
* @param src<#=TypeName(c)#> The <#=TypeName(c)#> reference to PUT
60+
* @param callback The callback to be called after success or failure
61+
*/
6262
public void put(<#=TypeName(c)#> src<#=TypeName(c)#>, final ICallback<<#=TypeName(c)#>> callback) {
63-
send(HttpMethod.PUT, callback, src<#=TypeName(c)#>);
63+
send(HttpMethod.PUT, callback, src<#=TypeName(c)#>);
6464
}
6565

66-
/**
67-
* Puts the <#=TypeName(c)#>
68-
*
69-
* @param src<#=TypeName(c)#> The <#=TypeName(c)#> reference to PUT
70-
* @return The <#=TypeName(c)#>
71-
* @throws ClientException An exception occurs if there was an error while the request was sent
72-
*/
66+
/**
67+
* Puts the <#=TypeName(c)#>
68+
*
69+
* @param src<#=TypeName(c)#> The <#=TypeName(c)#> reference to PUT
70+
* @return The <#=TypeName(c)#>
71+
* @throws ClientException An exception occurs if there was an error while the request was sent
72+
*/
7373
public <#=TypeName(c)#> put(<#=TypeName(c)#> src<#=TypeName(c)#>) throws ClientException {
74-
return send(HttpMethod.PUT, src<#=TypeName(c)#>);
74+
return send(HttpMethod.PUT, src<#=TypeName(c)#>);
7575
}
7676
<# } #>
7777
}

Templates/Android/generated/IBaseEntityReferenceRequest.java.tt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
*/
4242
void put(<#=TypeName(c)#> src<#=TypeName(c)#>, final ICallback<<#=TypeName(c)#>> callback);
4343

44-
/**
45-
* Puts the <#=TypeName(c)#>
46-
*
47-
* @param src<#=TypeName(c)#> The <#=TypeName(c)#> to PUT
48-
* @return The <#=TypeName(c)#>
49-
* @throws ClientException An exception occurs if there was an error while the request was sent
50-
*/
51-
<#=TypeName(c)#> put(<#=TypeName(c)#> src<#=TypeName(c)#>) throws ClientException;
44+
/**
45+
* Puts the <#=TypeName(c)#>
46+
*
47+
* @param src<#=TypeName(c)#> The <#=TypeName(c)#> to PUT
48+
* @return The <#=TypeName(c)#>
49+
* @throws ClientException An exception occurs if there was an error while the request was sent
50+
*/
51+
<#=TypeName(c)#> put(<#=TypeName(c)#> src<#=TypeName(c)#>) throws ClientException;
5252
<# } #>
5353
}

0 commit comments

Comments
 (0)