Skip to content

Commit 695e3f0

Browse files
committed
Update Site enum
1 parent 47faa18 commit 695e3f0

File tree

1 file changed

+13
-0
lines changed
  • core/src/main/java/org/botblock/javabotblockapi/core

1 file changed

+13
-0
lines changed

core/src/main/java/org/botblock/javabotblockapi/core/Site.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
*/
1818
package org.botblock.javabotblockapi.core;
1919

20+
import org.botblock.javabotblockapi.core.annotations.DeprecatedSince;
21+
import org.botblock.javabotblockapi.core.annotations.PlannedRemoval;
22+
2023
/**
2124
* Enum class containing all sites currently supported by BotBlock.org.
2225
*
@@ -117,9 +120,19 @@ public enum Site {
117120

118121
/**
119122
* <a href="https://space-bot-list.org" target="_blank">space-bot-list.org</a>
123+
*
124+
* @deprecated Replaced by {@link #SPACE_BOT_LIST_XYZ SPACE_BOT_LIST_XYZ}; Will be removed in Version 6.0.2
120125
*/
126+
@Deprecated
127+
@DeprecatedSince(version = "6.0.0", replacements = "#SPACE_BOT_LIST_XYZ")
128+
@PlannedRemoval(version = "6.0.2")
121129
SPACE_BOT_LIST_ORG("space-bot-list.org"),
122130

131+
/**
132+
* <a href="https://space-bot-list.xyz" target="_blank">space-bot-list.xyz</a>
133+
*/
134+
SPACE_BOT_LIST_XYZ("space-bot-list.xyz"),
135+
123136
/**
124137
* <a href="https://wonderbotlist.com" target="_blank">wonderbotlist.com</a>
125138
*/

0 commit comments

Comments
 (0)