Skip to content

Commit c9751f8

Browse files
authored
fix javadoc (#218)
1 parent daa67f3 commit c9751f8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

grpc-gcp/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,13 @@ sourceSets {
7878
}
7979
}
8080

81-
task javadocJar(type: Jar) {
81+
task javadocJar(type: Jar, dependsOn: javadoc) {
8282
archiveClassifier = 'javadoc'
8383
from javadoc.destinationDir
8484
}
8585

8686
task sourcesJar(type: Jar) {
87+
duplicatesStrategy = DuplicatesStrategy.WARN
8788
archiveClassifier = 'sources'
8889
from sourceSets.main.allJava
8990
}

grpc-gcp/src/main/java/com/google/cloud/grpc/GcpManagedChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ static List<String> getKeysFromMessage(MessageOrBuilder msg, String name) {
18941894
/**
18951895
* Fetch the affinity key from the message.
18961896
*
1897-
* @param message the <reqT> or <respT> prototype message.
1897+
* @param message the &lt;ReqT&gt; or &lt;RespT&gt; prototype message.
18981898
* @param isReq indicates if the message is a request message.
18991899
*/
19001900
@Nullable

0 commit comments

Comments
 (0)