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

Commit 60d0492

Browse files
authored
Merge pull request #16 from codeoverflow-org/feature/30-remove-mockupchat
Remove MockUp Chat Connector
2 parents 477cf44 + 9d9d175 commit 60d0492

File tree

5 files changed

+0
-96
lines changed

5 files changed

+0
-96
lines changed

src/main/java/org/codeoverflow/chatoverflow/api/io/event/chat/mockup/MockupChatMessageReceiveEvent.java

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/main/java/org/codeoverflow/chatoverflow/api/io/event/chat/mockup/MockupEvent.java

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/main/java/org/codeoverflow/chatoverflow/api/io/event/chat/mockup/MockupPrivateChatMessageReceiveEvent.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/main/java/org/codeoverflow/chatoverflow/api/io/input/chat/MockUpChatInput.java

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/main/java/org/codeoverflow/chatoverflow/api/plugin/configuration/Input.java

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import org.codeoverflow.chatoverflow.api.io.input.SampleInput;
77
import org.codeoverflow.chatoverflow.api.io.input.SerialInput;
88
import org.codeoverflow.chatoverflow.api.io.input.chat.DiscordChatInput;
9-
import org.codeoverflow.chatoverflow.api.io.input.chat.MockUpChatInput;
109
import org.codeoverflow.chatoverflow.api.io.input.chat.TwitchChatInput;
1110
import org.codeoverflow.chatoverflow.api.io.input.event.TipeeestreamEventInput;
1211

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

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-
136113
/**
137114
* Requires a TwitchChatInput which has to be specified by the user.
138115
*

0 commit comments

Comments
 (0)