Skip to content

Commit

Permalink
Update Site enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre601 committed Aug 8, 2020
1 parent 47faa18 commit 695e3f0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions core/src/main/java/org/botblock/javabotblockapi/core/Site.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
*/
package org.botblock.javabotblockapi.core;

import org.botblock.javabotblockapi.core.annotations.DeprecatedSince;
import org.botblock.javabotblockapi.core.annotations.PlannedRemoval;

/**
* Enum class containing all sites currently supported by BotBlock.org.
*
Expand Down Expand Up @@ -117,9 +120,19 @@ public enum Site {

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

/**
* <a href="https://space-bot-list.xyz" target="_blank">space-bot-list.xyz</a>
*/
SPACE_BOT_LIST_XYZ("space-bot-list.xyz"),

/**
* <a href="https://wonderbotlist.com" target="_blank">wonderbotlist.com</a>
*/
Expand Down

0 comments on commit 695e3f0

Please sign in to comment.