Skip to content

Commit ba7945f

Browse files
chore(internal): remove unnecessary [...] in @see
1 parent 8f377c4 commit ba7945f

File tree

102 files changed

+1356
-1356
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1356
-1356
lines changed

openai-java-core/src/main/kotlin/com/openai/models/batches/BatchListPage.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import java.util.Objects
1010
import java.util.Optional
1111
import kotlin.jvm.optionals.getOrNull
1212

13-
/** @see [BatchService.list] */
13+
/** @see BatchService.list */
1414
class BatchListPage
1515
private constructor(
1616
private val service: BatchService,
@@ -21,14 +21,14 @@ private constructor(
2121
/**
2222
* Delegates to [BatchListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [BatchListPageResponse.data]
24+
* @see BatchListPageResponse.data
2525
*/
2626
fun data(): List<Batch> = response._data().getOptional("data").getOrNull() ?: emptyList()
2727

2828
/**
2929
* Delegates to [BatchListPageResponse], but gracefully handles missing data.
3030
*
31-
* @see [BatchListPageResponse.hasMore]
31+
* @see BatchListPageResponse.hasMore
3232
*/
3333
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3434

openai-java-core/src/main/kotlin/com/openai/models/batches/BatchListPageAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
1212
import java.util.concurrent.Executor
1313
import kotlin.jvm.optionals.getOrNull
1414

15-
/** @see [BatchServiceAsync.list] */
15+
/** @see BatchServiceAsync.list */
1616
class BatchListPageAsync
1717
private constructor(
1818
private val service: BatchServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
2424
/**
2525
* Delegates to [BatchListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [BatchListPageResponse.data]
27+
* @see BatchListPageResponse.data
2828
*/
2929
fun data(): List<Batch> = response._data().getOptional("data").getOrNull() ?: emptyList()
3030

3131
/**
3232
* Delegates to [BatchListPageResponse], but gracefully handles missing data.
3333
*
34-
* @see [BatchListPageResponse.hasMore]
34+
* @see BatchListPageResponse.hasMore
3535
*/
3636
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3737

openai-java-core/src/main/kotlin/com/openai/models/chat/completions/ChatCompletionListPage.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import java.util.Objects
1010
import java.util.Optional
1111
import kotlin.jvm.optionals.getOrNull
1212

13-
/** @see [ChatCompletionService.list] */
13+
/** @see ChatCompletionService.list */
1414
class ChatCompletionListPage
1515
private constructor(
1616
private val service: ChatCompletionService,
@@ -21,15 +21,15 @@ private constructor(
2121
/**
2222
* Delegates to [ChatCompletionListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [ChatCompletionListPageResponse.data]
24+
* @see ChatCompletionListPageResponse.data
2525
*/
2626
fun data(): List<ChatCompletion> =
2727
response._data().getOptional("data").getOrNull() ?: emptyList()
2828

2929
/**
3030
* Delegates to [ChatCompletionListPageResponse], but gracefully handles missing data.
3131
*
32-
* @see [ChatCompletionListPageResponse.hasMore]
32+
* @see ChatCompletionListPageResponse.hasMore
3333
*/
3434
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3535

openai-java-core/src/main/kotlin/com/openai/models/chat/completions/ChatCompletionListPageAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
1212
import java.util.concurrent.Executor
1313
import kotlin.jvm.optionals.getOrNull
1414

15-
/** @see [ChatCompletionServiceAsync.list] */
15+
/** @see ChatCompletionServiceAsync.list */
1616
class ChatCompletionListPageAsync
1717
private constructor(
1818
private val service: ChatCompletionServiceAsync,
@@ -24,15 +24,15 @@ private constructor(
2424
/**
2525
* Delegates to [ChatCompletionListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [ChatCompletionListPageResponse.data]
27+
* @see ChatCompletionListPageResponse.data
2828
*/
2929
fun data(): List<ChatCompletion> =
3030
response._data().getOptional("data").getOrNull() ?: emptyList()
3131

3232
/**
3333
* Delegates to [ChatCompletionListPageResponse], but gracefully handles missing data.
3434
*
35-
* @see [ChatCompletionListPageResponse.hasMore]
35+
* @see ChatCompletionListPageResponse.hasMore
3636
*/
3737
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3838

openai-java-core/src/main/kotlin/com/openai/models/chat/completions/messages/MessageListPage.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import java.util.Objects
1111
import java.util.Optional
1212
import kotlin.jvm.optionals.getOrNull
1313

14-
/** @see [MessageService.list] */
14+
/** @see MessageService.list */
1515
class MessageListPage
1616
private constructor(
1717
private val service: MessageService,
@@ -22,15 +22,15 @@ private constructor(
2222
/**
2323
* Delegates to [MessageListPageResponse], but gracefully handles missing data.
2424
*
25-
* @see [MessageListPageResponse.data]
25+
* @see MessageListPageResponse.data
2626
*/
2727
fun data(): List<ChatCompletionStoreMessage> =
2828
response._data().getOptional("data").getOrNull() ?: emptyList()
2929

3030
/**
3131
* Delegates to [MessageListPageResponse], but gracefully handles missing data.
3232
*
33-
* @see [MessageListPageResponse.hasMore]
33+
* @see MessageListPageResponse.hasMore
3434
*/
3535
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3636

openai-java-core/src/main/kotlin/com/openai/models/chat/completions/messages/MessageListPageAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import java.util.concurrent.CompletableFuture
1313
import java.util.concurrent.Executor
1414
import kotlin.jvm.optionals.getOrNull
1515

16-
/** @see [MessageServiceAsync.list] */
16+
/** @see MessageServiceAsync.list */
1717
class MessageListPageAsync
1818
private constructor(
1919
private val service: MessageServiceAsync,
@@ -25,15 +25,15 @@ private constructor(
2525
/**
2626
* Delegates to [MessageListPageResponse], but gracefully handles missing data.
2727
*
28-
* @see [MessageListPageResponse.data]
28+
* @see MessageListPageResponse.data
2929
*/
3030
fun data(): List<ChatCompletionStoreMessage> =
3131
response._data().getOptional("data").getOrNull() ?: emptyList()
3232

3333
/**
3434
* Delegates to [MessageListPageResponse], but gracefully handles missing data.
3535
*
36-
* @see [MessageListPageResponse.hasMore]
36+
* @see MessageListPageResponse.hasMore
3737
*/
3838
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3939

openai-java-core/src/main/kotlin/com/openai/models/containers/ContainerListPage.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import java.util.Objects
1010
import java.util.Optional
1111
import kotlin.jvm.optionals.getOrNull
1212

13-
/** @see [ContainerService.list] */
13+
/** @see ContainerService.list */
1414
class ContainerListPage
1515
private constructor(
1616
private val service: ContainerService,
@@ -21,15 +21,15 @@ private constructor(
2121
/**
2222
* Delegates to [ContainerListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [ContainerListPageResponse.data]
24+
* @see ContainerListPageResponse.data
2525
*/
2626
fun data(): List<ContainerListResponse> =
2727
response._data().getOptional("data").getOrNull() ?: emptyList()
2828

2929
/**
3030
* Delegates to [ContainerListPageResponse], but gracefully handles missing data.
3131
*
32-
* @see [ContainerListPageResponse.hasMore]
32+
* @see ContainerListPageResponse.hasMore
3333
*/
3434
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3535

openai-java-core/src/main/kotlin/com/openai/models/containers/ContainerListPageAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
1212
import java.util.concurrent.Executor
1313
import kotlin.jvm.optionals.getOrNull
1414

15-
/** @see [ContainerServiceAsync.list] */
15+
/** @see ContainerServiceAsync.list */
1616
class ContainerListPageAsync
1717
private constructor(
1818
private val service: ContainerServiceAsync,
@@ -24,15 +24,15 @@ private constructor(
2424
/**
2525
* Delegates to [ContainerListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [ContainerListPageResponse.data]
27+
* @see ContainerListPageResponse.data
2828
*/
2929
fun data(): List<ContainerListResponse> =
3030
response._data().getOptional("data").getOrNull() ?: emptyList()
3131

3232
/**
3333
* Delegates to [ContainerListPageResponse], but gracefully handles missing data.
3434
*
35-
* @see [ContainerListPageResponse.hasMore]
35+
* @see ContainerListPageResponse.hasMore
3636
*/
3737
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3838

openai-java-core/src/main/kotlin/com/openai/models/containers/files/FileListPage.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import java.util.Objects
1010
import java.util.Optional
1111
import kotlin.jvm.optionals.getOrNull
1212

13-
/** @see [FileService.list] */
13+
/** @see FileService.list */
1414
class FileListPage
1515
private constructor(
1616
private val service: FileService,
@@ -21,15 +21,15 @@ private constructor(
2121
/**
2222
* Delegates to [FileListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [FileListPageResponse.data]
24+
* @see FileListPageResponse.data
2525
*/
2626
fun data(): List<FileListResponse> =
2727
response._data().getOptional("data").getOrNull() ?: emptyList()
2828

2929
/**
3030
* Delegates to [FileListPageResponse], but gracefully handles missing data.
3131
*
32-
* @see [FileListPageResponse.hasMore]
32+
* @see FileListPageResponse.hasMore
3333
*/
3434
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3535

openai-java-core/src/main/kotlin/com/openai/models/containers/files/FileListPageAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
1212
import java.util.concurrent.Executor
1313
import kotlin.jvm.optionals.getOrNull
1414

15-
/** @see [FileServiceAsync.list] */
15+
/** @see FileServiceAsync.list */
1616
class FileListPageAsync
1717
private constructor(
1818
private val service: FileServiceAsync,
@@ -24,15 +24,15 @@ private constructor(
2424
/**
2525
* Delegates to [FileListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [FileListPageResponse.data]
27+
* @see FileListPageResponse.data
2828
*/
2929
fun data(): List<FileListResponse> =
3030
response._data().getOptional("data").getOrNull() ?: emptyList()
3131

3232
/**
3333
* Delegates to [FileListPageResponse], but gracefully handles missing data.
3434
*
35-
* @see [FileListPageResponse.hasMore]
35+
* @see FileListPageResponse.hasMore
3636
*/
3737
fun hasMore(): Optional<Boolean> = response._hasMore().getOptional("has_more")
3838

0 commit comments

Comments
 (0)