Skip to content

Commit 18d774d

Browse files
committed
- fixes cases for generic type parameter name
1 parent eea816f commit 18d774d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/java/com/microsoft/graph/requests/GraphServiceClient.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@
107107

108108
/**
109109
* The class for the Graph Service Client.
110-
* @param <NativeRequestType> type of a request for the native http client
110+
* @param <nativeRequestType> type of a request for the native http client
111111
*/
112-
public class GraphServiceClient<NativeRequestType> extends BaseClient<NativeRequestType> implements IBaseClient<NativeRequestType> {
112+
public class GraphServiceClient<nativeRequestType> extends BaseClient<nativeRequestType> implements IBaseClient<nativeRequestType> {
113113
/**
114114
* Restricted constructor
115115
*/
@@ -150,9 +150,9 @@ public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest>
150150
}
151151
/**
152152
* Builder to help configure the Graph service client
153-
* @param <NativeRequestType> type of a request for the native http client
153+
* @param <nativeRequestType> type of a request for the native http client
154154
*/
155-
public static class Builder<httpClientType, NativeRequestType> extends BaseClient.Builder<httpClientType, NativeRequestType> {
155+
public static class Builder<httpClientType, nativeRequestType> extends BaseClient.Builder<httpClientType, nativeRequestType> {
156156
/**
157157
* Sets the serializer.
158158
*
@@ -162,7 +162,7 @@ public static class Builder<httpClientType, NativeRequestType> extends BaseClien
162162
*/
163163
@Nonnull
164164
@Override
165-
public Builder<httpClientType, NativeRequestType> serializer(@Nonnull final ISerializer serializer) {
165+
public Builder<httpClientType, nativeRequestType> serializer(@Nonnull final ISerializer serializer) {
166166
super.serializer(serializer);
167167
return this;
168168
}
@@ -176,7 +176,7 @@ public Builder<httpClientType, NativeRequestType> serializer(@Nonnull final ISer
176176
*/
177177
@Nonnull
178178
@Override
179-
public Builder<httpClientType, NativeRequestType> httpProvider(@Nonnull final IHttpProvider httpProvider) {
179+
public Builder<httpClientType, nativeRequestType> httpProvider(@Nonnull final IHttpProvider httpProvider) {
180180
super.httpProvider(httpProvider);
181181
return this;
182182
}
@@ -190,7 +190,7 @@ public Builder<httpClientType, NativeRequestType> httpProvider(@Nonnull final IH
190190
*/
191191
@Nonnull
192192
@Override
193-
public Builder<httpClientType, NativeRequestType> logger(@Nonnull final ILogger logger) {
193+
public Builder<httpClientType, nativeRequestType> logger(@Nonnull final ILogger logger) {
194194
super.logger(logger);
195195
return this;
196196
}
@@ -204,7 +204,7 @@ public Builder<httpClientType, NativeRequestType> logger(@Nonnull final ILogger
204204
*/
205205
@Nonnull
206206
@Override
207-
public Builder<httpClientType, NativeRequestType> httpClient(@Nonnull final httpClientType client) {
207+
public Builder<httpClientType, nativeRequestType> httpClient(@Nonnull final httpClientType client) {
208208
super.httpClient(client);
209209
return this;
210210
}
@@ -217,7 +217,7 @@ public Builder<httpClientType, NativeRequestType> httpClient(@Nonnull final http
217217
*/
218218
@Nonnull
219219
@Override
220-
public Builder<httpClientType, NativeRequestType> authenticationProvider(@Nonnull final IAuthenticationProvider auth) {
220+
public Builder<httpClientType, nativeRequestType> authenticationProvider(@Nonnull final IAuthenticationProvider auth) {
221221
super.authenticationProvider(auth);
222222
return this;
223223
}

0 commit comments

Comments
 (0)