Skip to content

Commit 9e573f5

Browse files
committed
- fixes a bug where javadoc comments would be missing
1 parent e38a024 commit 9e573f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public static Builder<OkHttpClient, Request> builder() {
148148
* @return builder to start configuring the client
149149
*/
150150
@Nonnull
151-
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(Class<nativeClient> nativeClientClass, Class<nativeRequest> nativeRequestClass) {
151+
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(@Nonnull final Class<nativeClient> nativeClientClass, @Nonnull final Class<nativeRequest> nativeRequestClass) {
152152
return new Builder<>();
153153
}
154154
/**

0 commit comments

Comments
 (0)