Skip to content

Commit 350dc5b

Browse files
authored
Merge pull request #439 from microsoftgraph/bugfix/java-v3-missing-javadoc
bugfix/java v3 missing javadoc
2 parents 67eff1c + f570b43 commit 350dc5b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Templates/templates/Java/requests/BaseClient.java.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import okhttp3.Request;
5050
* @return builder to start configuring the client
5151
*/
5252
@Nonnull
53-
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(Class<nativeClient> nativeClientClass, Class<nativeRequest> nativeRequestClass) {
53+
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(@Nonnull final Class<nativeClient> nativeClientClass, @Nonnull final Class<nativeRequest> nativeRequestClass) {
5454
return new Builder<>();
5555
}
5656
/**

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/GraphServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static Builder<OkHttpClient, Request> builder() {
6767
* @return builder to start configuring the client
6868
*/
6969
@Nonnull
70-
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(Class<nativeClient> nativeClientClass, Class<nativeRequest> nativeRequestClass) {
70+
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(@Nonnull final Class<nativeClient> nativeClientClass, @Nonnull final Class<nativeRequest> nativeRequestClass) {
7171
return new Builder<>();
7272
}
7373
/**

test/Typewriter.Test/TestDataJavaBeta/com/microsoft/graph/requests/GraphServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static Builder<OkHttpClient, Request> builder() {
6767
* @return builder to start configuring the client
6868
*/
6969
@Nonnull
70-
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(Class<nativeClient> nativeClientClass, Class<nativeRequest> nativeRequestClass) {
70+
public static <nativeClient, nativeRequest> Builder<nativeClient, nativeRequest> builder(@Nonnull final Class<nativeClient> nativeClientClass, @Nonnull final Class<nativeRequest> nativeRequestClass) {
7171
return new Builder<>();
7272
}
7373
/**

0 commit comments

Comments
 (0)