Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Remove MockUp Chat Connector #16

Merged
merged 1 commit into from
Aug 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.codeoverflow.chatoverflow.api.io.input.SampleInput;
import org.codeoverflow.chatoverflow.api.io.input.SerialInput;
import org.codeoverflow.chatoverflow.api.io.input.chat.DiscordChatInput;
import org.codeoverflow.chatoverflow.api.io.input.chat.MockUpChatInput;
import org.codeoverflow.chatoverflow.api.io.input.chat.TwitchChatInput;
import org.codeoverflow.chatoverflow.api.io.input.event.TipeeestreamEventInput;

Expand Down Expand Up @@ -111,28 +110,6 @@ public Requirement<DiscordChatInput> discordChat(String uniqueRequirementId) {
return requirements.requireInput(uniqueRequirementId, "Discord Chat", false, DiscordChatInput.class);
}

/**
* Requires a MockUpChatInput which has to be specified by the user.
*
* @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
* @param displayName a string to display to the user while setting your requirement
* @param isOptional true if this requirement is optional, false if mandatory
* @return the requirement object. Use the get() method only at runtime!
*/
public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId, String displayName, boolean isOptional) {
return requirements.requireInput(uniqueRequirementId, displayName, isOptional, MockUpChatInput.class);
}

/**
* Requires a MockUpChatInput which has to be specified by the user.
*
* @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
* @return the requirement object. Use the get() method only at runtime!
*/
public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId) {
return requirements.requireInput(uniqueRequirementId, "Mock Up Chat", false, MockUpChatInput.class);
}

/**
* Requires a TwitchChatInput which has to be specified by the user.
*
Expand Down