Skip to content

Commit 42d3697

Browse files
chore(internal): remove unnecessary [...] in @see
1 parent d6abaec commit 42d3697

162 files changed

Lines changed: 2568 additions & 2568 deletions

File tree

Some content is hidden

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

lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClient.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,17 +136,17 @@ interface LithicClient {
136136
/** Status of api */
137137
fun apiStatus(): ApiStatus = apiStatus(ClientApiStatusParams.none())
138138

139-
/** @see [apiStatus] */
139+
/** @see apiStatus */
140140
fun apiStatus(
141141
params: ClientApiStatusParams = ClientApiStatusParams.none(),
142142
requestOptions: RequestOptions = RequestOptions.none(),
143143
): ApiStatus
144144

145-
/** @see [apiStatus] */
145+
/** @see apiStatus */
146146
fun apiStatus(params: ClientApiStatusParams = ClientApiStatusParams.none()): ApiStatus =
147147
apiStatus(params, RequestOptions.none())
148148

149-
/** @see [apiStatus] */
149+
/** @see apiStatus */
150150
fun apiStatus(requestOptions: RequestOptions): ApiStatus =
151151
apiStatus(ClientApiStatusParams.none(), requestOptions)
152152

@@ -236,20 +236,20 @@ interface LithicClient {
236236
@MustBeClosed
237237
fun apiStatus(): HttpResponseFor<ApiStatus> = apiStatus(ClientApiStatusParams.none())
238238

239-
/** @see [apiStatus] */
239+
/** @see apiStatus */
240240
@MustBeClosed
241241
fun apiStatus(
242242
params: ClientApiStatusParams = ClientApiStatusParams.none(),
243243
requestOptions: RequestOptions = RequestOptions.none(),
244244
): HttpResponseFor<ApiStatus>
245245

246-
/** @see [apiStatus] */
246+
/** @see apiStatus */
247247
@MustBeClosed
248248
fun apiStatus(
249249
params: ClientApiStatusParams = ClientApiStatusParams.none()
250250
): HttpResponseFor<ApiStatus> = apiStatus(params, RequestOptions.none())
251251

252-
/** @see [apiStatus] */
252+
/** @see apiStatus */
253253
@MustBeClosed
254254
fun apiStatus(requestOptions: RequestOptions): HttpResponseFor<ApiStatus> =
255255
apiStatus(ClientApiStatusParams.none(), requestOptions)

lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsync.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,18 +136,18 @@ interface LithicClientAsync {
136136
/** Status of api */
137137
fun apiStatus(): CompletableFuture<ApiStatus> = apiStatus(ClientApiStatusParams.none())
138138

139-
/** @see [apiStatus] */
139+
/** @see apiStatus */
140140
fun apiStatus(
141141
params: ClientApiStatusParams = ClientApiStatusParams.none(),
142142
requestOptions: RequestOptions = RequestOptions.none(),
143143
): CompletableFuture<ApiStatus>
144144

145-
/** @see [apiStatus] */
145+
/** @see apiStatus */
146146
fun apiStatus(
147147
params: ClientApiStatusParams = ClientApiStatusParams.none()
148148
): CompletableFuture<ApiStatus> = apiStatus(params, RequestOptions.none())
149149

150-
/** @see [apiStatus] */
150+
/** @see apiStatus */
151151
fun apiStatus(requestOptions: RequestOptions): CompletableFuture<ApiStatus> =
152152
apiStatus(ClientApiStatusParams.none(), requestOptions)
153153

@@ -239,18 +239,18 @@ interface LithicClientAsync {
239239
fun apiStatus(): CompletableFuture<HttpResponseFor<ApiStatus>> =
240240
apiStatus(ClientApiStatusParams.none())
241241

242-
/** @see [apiStatus] */
242+
/** @see apiStatus */
243243
fun apiStatus(
244244
params: ClientApiStatusParams = ClientApiStatusParams.none(),
245245
requestOptions: RequestOptions = RequestOptions.none(),
246246
): CompletableFuture<HttpResponseFor<ApiStatus>>
247247

248-
/** @see [apiStatus] */
248+
/** @see apiStatus */
249249
fun apiStatus(
250250
params: ClientApiStatusParams = ClientApiStatusParams.none()
251251
): CompletableFuture<HttpResponseFor<ApiStatus>> = apiStatus(params, RequestOptions.none())
252252

253-
/** @see [apiStatus] */
253+
/** @see apiStatus */
254254
fun apiStatus(
255255
requestOptions: RequestOptions
256256
): CompletableFuture<HttpResponseFor<ApiStatus>> =

lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPage.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 [AccountHolderService.list] */
13+
/** @see AccountHolderService.list */
1414
class AccountHolderListPage
1515
private constructor(
1616
private val service: AccountHolderService,
@@ -21,15 +21,15 @@ private constructor(
2121
/**
2222
* Delegates to [AccountHolderListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [AccountHolderListPageResponse.data]
24+
* @see AccountHolderListPageResponse.data
2525
*/
2626
fun data(): List<AccountHolder> =
2727
response._data().getOptional("data").getOrNull() ?: emptyList()
2828

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPageAsync.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 [AccountHolderServiceAsync.list] */
15+
/** @see AccountHolderServiceAsync.list */
1616
class AccountHolderListPageAsync
1717
private constructor(
1818
private val service: AccountHolderServiceAsync,
@@ -24,15 +24,15 @@ private constructor(
2424
/**
2525
* Delegates to [AccountHolderListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [AccountHolderListPageResponse.data]
27+
* @see AccountHolderListPageResponse.data
2828
*/
2929
fun data(): List<AccountHolder> =
3030
response._data().getOptional("data").getOrNull() ?: emptyList()
3131

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPage.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 [AccountService.list] */
13+
/** @see AccountService.list */
1414
class AccountListPage
1515
private constructor(
1616
private val service: AccountService,
@@ -21,14 +21,14 @@ private constructor(
2121
/**
2222
* Delegates to [AccountListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [AccountListPageResponse.data]
24+
* @see AccountListPageResponse.data
2525
*/
2626
fun data(): List<Account> = response._data().getOptional("data").getOrNull() ?: emptyList()
2727

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPageAsync.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 [AccountServiceAsync.list] */
15+
/** @see AccountServiceAsync.list */
1616
class AccountListPageAsync
1717
private constructor(
1818
private val service: AccountServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
2424
/**
2525
* Delegates to [AccountListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [AccountListPageResponse.data]
27+
* @see AccountListPageResponse.data
2828
*/
2929
fun data(): List<Account> = response._data().getOptional("data").getOrNull() ?: emptyList()
3030

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPage.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 [AggregateBalanceService.list] */
13+
/** @see AggregateBalanceService.list */
1414
class AggregateBalanceListPage
1515
private constructor(
1616
private val service: AggregateBalanceService,
@@ -21,15 +21,15 @@ private constructor(
2121
/**
2222
* Delegates to [AggregateBalanceListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [AggregateBalanceListPageResponse.data]
24+
* @see AggregateBalanceListPageResponse.data
2525
*/
2626
fun data(): List<AggregateBalance> =
2727
response._data().getOptional("data").getOrNull() ?: emptyList()
2828

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPageAsync.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 [AggregateBalanceServiceAsync.list] */
15+
/** @see AggregateBalanceServiceAsync.list */
1616
class AggregateBalanceListPageAsync
1717
private constructor(
1818
private val service: AggregateBalanceServiceAsync,
@@ -24,15 +24,15 @@ private constructor(
2424
/**
2525
* Delegates to [AggregateBalanceListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [AggregateBalanceListPageResponse.data]
27+
* @see AggregateBalanceListPageResponse.data
2828
*/
2929
fun data(): List<AggregateBalance> =
3030
response._data().getOptional("data").getOrNull() ?: emptyList()
3131

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPage.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 [V2Service.list] */
13+
/** @see V2Service.list */
1414
class AuthRuleV2ListPage
1515
private constructor(
1616
private val service: V2Service,
@@ -21,15 +21,15 @@ private constructor(
2121
/**
2222
* Delegates to [AuthRuleV2ListPageResponse], but gracefully handles missing data.
2323
*
24-
* @see [AuthRuleV2ListPageResponse.data]
24+
* @see AuthRuleV2ListPageResponse.data
2525
*/
2626
fun data(): List<V2ListResponse> =
2727
response._data().getOptional("data").getOrNull() ?: emptyList()
2828

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPageAsync.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 [V2ServiceAsync.list] */
15+
/** @see V2ServiceAsync.list */
1616
class AuthRuleV2ListPageAsync
1717
private constructor(
1818
private val service: V2ServiceAsync,
@@ -24,15 +24,15 @@ private constructor(
2424
/**
2525
* Delegates to [AuthRuleV2ListPageResponse], but gracefully handles missing data.
2626
*
27-
* @see [AuthRuleV2ListPageResponse.data]
27+
* @see AuthRuleV2ListPageResponse.data
2828
*/
2929
fun data(): List<V2ListResponse> =
3030
response._data().getOptional("data").getOrNull() ?: emptyList()
3131

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

0 commit comments

Comments
 (0)