Skip to content

Commit

Permalink
chore: fix wrong javadocs in TokenHandlers (#13789)
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Valkanov <valentin.valkanov@limechain.tech>
Co-authored-by: Mustafa Uzun <mustafa.uzun@limechain.tech>
  • Loading branch information
Valentin Valkanov and mustafauzunn authored Jun 25, 2024
1 parent 19441a3 commit 3709c3a
Showing 1 changed file with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,36 +382,36 @@ public TokenFeeScheduleUpdateHandler tokenFeeScheduleUpdateHandler() {
}

/**
* Gets the tokenFeeScheduleUpdateHandler.
* Gets the tokenPauseHandler.
*
* @return the tokenFeeScheduleUpdateHandler
* @return the tokenPauseHandler
*/
public TokenPauseHandler tokenPauseHandler() {
return tokenPauseHandler;
}

/**
* Gets the tokenFeeScheduleUpdateHandler.
* Gets the tokenUnpauseHandler.
*
* @return the tokenFeeScheduleUpdateHandler
* @return the tokenUnpauseHandler
*/
public TokenUnpauseHandler tokenUnpauseHandler() {
return tokenUnpauseHandler;
}

/**
* Gets the tokenFeeScheduleUpdateHandler.
* Gets the cryptoGetAccountBalanceHandler.
*
* @return the tokenFeeScheduleUpdateHandler
* @return the cryptoGetAccountBalanceHandler
*/
public CryptoGetAccountBalanceHandler cryptoGetAccountBalanceHandler() {
return cryptoGetAccountBalanceHandler;
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the cryptoGetAccountInfoHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the cryptoGetAccountInfoHandler
*/
public CryptoGetAccountInfoHandler cryptoGetAccountInfoHandler() {
return cryptoGetAccountInfoHandler;
Expand All @@ -427,54 +427,54 @@ public CryptoGetAccountRecordsHandler cryptoGetAccountRecordsHandler() {
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the cryptoGetLiveHashHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the cryptoGetLiveHashHandler
*/
public CryptoGetLiveHashHandler cryptoGetLiveHashHandler() {
return cryptoGetLiveHashHandler;
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the cryptoGetStakersHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the cryptoGetStakersHandler
*/
public CryptoGetStakersHandler cryptoGetStakersHandler() {
return cryptoGetStakersHandler;
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the tokenGetInfoHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the tokenGetInfoHandler
*/
public TokenGetInfoHandler tokenGetInfoHandler() {
return tokenGetInfoHandler;
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the tokenGetAccountNftInfosHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the tokenGetAccountNftInfosHandler
*/
public TokenGetAccountNftInfosHandler tokenGetAccountNftInfosHandler() {
return tokenGetAccountNftInfosHandler;
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the tokenGetNftInfoHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the tokenGetNftInfoHandler
*/
public TokenGetNftInfoHandler tokenGetNftInfoHandler() {
return tokenGetNftInfoHandler;
}

/**
* Gets the cryptoGetAccountRecordsHandler.
* Gets the tokenGetNftInfosHandler.
*
* @return the cryptoGetAccountRecordsHandler
* @return the tokenGetNftInfosHandler
*/
public TokenGetNftInfosHandler tokenGetNftInfosHandler() {
return tokenGetNftInfosHandler;
Expand Down

0 comments on commit 3709c3a

Please sign in to comment.