@@ -119,6 +119,7 @@ default boolean setOwner(OfflinePlayer player) {
119119 * @param amount the amount being attempted to deposit
120120 * @param currency the currency of the deposit
121121 * @return {@code true} if the player can deposit the specified amount, otherwise {@code false}
122+ * @since 3.0.0
122123 */
123124 default boolean canDeposit (OfflinePlayer player , Number amount , Currency currency ) {
124125 return canDeposit (player .getUniqueId (), amount , currency );
@@ -133,6 +134,7 @@ default boolean canDeposit(OfflinePlayer player, Number amount, Currency currenc
133134 * @param amount the amount being attempted to deposit
134135 * @param currency the currency of the deposit
135136 * @return {@code true} if the player can deposit the specified amount, otherwise {@code false}
137+ * @since 3.0.0
136138 */
137139 boolean canDeposit (UUID uuid , Number amount , Currency currency );
138140
@@ -145,6 +147,7 @@ default boolean canDeposit(OfflinePlayer player, Number amount, Currency currenc
145147 * @param amount the amount being attempted to withdraw
146148 * @param currency the currency of the withdrawal
147149 * @return {@code true} if the player can withdraw the specified amount, otherwise {@code false}
150+ * @since 3.0.0
148151 */
149152 default boolean canWithdraw (OfflinePlayer player , Number amount , Currency currency ) {
150153 return canWithdraw (player .getUniqueId (), amount , currency );
@@ -159,6 +162,7 @@ default boolean canWithdraw(OfflinePlayer player, Number amount, Currency curren
159162 * @param amount the amount being attempted to withdraw
160163 * @param currency the currency of the withdrawal
161164 * @return {@code true} if the player can withdraw the specified amount, otherwise {@code false}
165+ * @since 3.0.0
162166 */
163167 boolean canWithdraw (UUID uuid , Number amount , Currency currency );
164168}
0 commit comments