Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SMadani committed Nov 13, 2024
1 parent 832b0a7 commit 6c2add6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ javadoc {
options {
locale 'en_US'
setMemberLevel JavadocMemberLevel.PUBLIC
addBooleanOption('Xdoclint:none', true)
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/opentok/Hls.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/**
* Represents HLS options for a live streaming broadcast. Pass this object
* into the {@link BroadcastProperties.Builder#hls()} method. It is returned by the
* into the {@link BroadcastProperties.Builder#hls(Hls)} method. It is returned by the
* {@link BroadcastProperties#hls()} method.
*/
public class Hls {
Expand Down
9 changes: 5 additions & 4 deletions src/main/java/com/opentok/OpenTok.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ public OpenTok(int apiKey, String apiSecret) {
}

/**
* Creates an OpenTok object for use with the <a href=https://developer.vonage.com/en/api/video>
* Vonage Video API</a>. This is intended as a short-term step towards full migration to Vonage.
* See <a href=https://developer.vonage.com/en/video/transition-guides/server-sdks/java?source=video>
* the Java SDK transition guide</a> for details.
* Creates an OpenTok object for use with the
* <a href=https://developer.vonage.com/en/api/video>Vonage Video API</a>. This is intended as a short-term step
* towards full migration to Vonage. See the
* <a href=https://developer.vonage.com/en/video/transition-guides/server-sdks/java>Java SDK transition guide</a>
* for details.
*
* @param applicationId Your Vonage application UUID with video capabilities enabled.
* @param privateKeyPath Absolute path to the private key for your application.
Expand Down

0 comments on commit 6c2add6

Please sign in to comment.