|
6 | 6 | import org.codeoverflow.chatoverflow.api.io.input.SampleInput;
|
7 | 7 | import org.codeoverflow.chatoverflow.api.io.input.SerialInput;
|
8 | 8 | import org.codeoverflow.chatoverflow.api.io.input.chat.DiscordChatInput;
|
9 |
| -import org.codeoverflow.chatoverflow.api.io.input.chat.MockUpChatInput; |
10 | 9 | import org.codeoverflow.chatoverflow.api.io.input.chat.TwitchChatInput;
|
11 | 10 | import org.codeoverflow.chatoverflow.api.io.input.event.TipeeestreamEventInput;
|
12 | 11 |
|
@@ -111,28 +110,6 @@ public Requirement<DiscordChatInput> discordChat(String uniqueRequirementId) {
|
111 | 110 | return requirements.requireInput(uniqueRequirementId, "Discord Chat", false, DiscordChatInput.class);
|
112 | 111 | }
|
113 | 112 |
|
114 |
| - /** |
115 |
| - * Requires a MockUpChatInput which has to be specified by the user. |
116 |
| - * |
117 |
| - * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin |
118 |
| - * @param displayName a string to display to the user while setting your requirement |
119 |
| - * @param isOptional true if this requirement is optional, false if mandatory |
120 |
| - * @return the requirement object. Use the get() method only at runtime! |
121 |
| - */ |
122 |
| - public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
123 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, MockUpChatInput.class); |
124 |
| - } |
125 |
| - |
126 |
| - /** |
127 |
| - * Requires a MockUpChatInput which has to be specified by the user. |
128 |
| - * |
129 |
| - * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin |
130 |
| - * @return the requirement object. Use the get() method only at runtime! |
131 |
| - */ |
132 |
| - public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId) { |
133 |
| - return requirements.requireInput(uniqueRequirementId, "Mock Up Chat", false, MockUpChatInput.class); |
134 |
| - } |
135 |
| - |
136 | 113 | /**
|
137 | 114 | * Requires a TwitchChatInput which has to be specified by the user.
|
138 | 115 | *
|
|
0 commit comments