File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
application/src/main/java/org/togetherjava/tjbot/features Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import net .dv8tion .jda .api .JDA ;
4
4
5
- import org .togetherjava .tjbot .commands .github .GitHubCommand ;
6
- import org .togetherjava .tjbot .commands .github .GitHubReference ;
7
5
import org .togetherjava .tjbot .config .Config ;
8
6
import org .togetherjava .tjbot .config .FeatureBlacklist ;
9
7
import org .togetherjava .tjbot .config .FeatureBlacklistConfig ;
23
21
import org .togetherjava .tjbot .features .code .CodeMessageHandler ;
24
22
import org .togetherjava .tjbot .features .code .CodeMessageManualDetection ;
25
23
import org .togetherjava .tjbot .features .filesharing .FileSharingMessageListener ;
24
+ import org .togetherjava .tjbot .features .github .GitHubCommand ;
25
+ import org .togetherjava .tjbot .features .github .GitHubReference ;
26
26
import org .togetherjava .tjbot .features .help .*;
27
27
import org .togetherjava .tjbot .features .jshell .JShellCommand ;
28
28
import org .togetherjava .tjbot .features .jshell .JShellEval ;
Original file line number Diff line number Diff line change 1
- package org .togetherjava .tjbot .commands .github ;
1
+ package org .togetherjava .tjbot .features .github ;
2
2
3
3
import net .dv8tion .jda .api .events .interaction .command .CommandAutoCompleteInteractionEvent ;
4
4
import net .dv8tion .jda .api .events .interaction .command .SlashCommandInteractionEvent ;
Original file line number Diff line number Diff line change 1
- package org .togetherjava .tjbot .commands .github ;
1
+ package org .togetherjava .tjbot .features .github ;
2
2
3
3
import net .dv8tion .jda .api .EmbedBuilder ;
4
4
import net .dv8tion .jda .api .entities .Message ;
35
35
* the bot replies with an embed that contains info on the issue/PR.
36
36
*/
37
37
public final class GitHubReference extends MessageReceiverAdapter {
38
- static final String ID_GROUP = "id" ;
39
38
private static final Logger logger = LoggerFactory .getLogger (GitHubReference .class );
39
+ static final String ID_GROUP = "id" ;
40
40
41
41
/**
42
42
* The pattern(#123) used to determine whether a message is referencing an issue.
Original file line number Diff line number Diff line change 3
3
*/
4
4
@ MethodsReturnNonnullByDefault
5
5
@ ParametersAreNonnullByDefault
6
- package org .togetherjava .tjbot .commands .github ;
6
+ package org .togetherjava .tjbot .features .github ;
7
7
8
8
import org .togetherjava .tjbot .annotations .MethodsReturnNonnullByDefault ;
9
9
You can’t perform that action at this time.
0 commit comments