File tree Expand file tree Collapse file tree 18 files changed +60
-61
lines changed
java/com/zetaplugins/serverlinksz Expand file tree Collapse file tree 18 files changed +60
-61
lines changed Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz ;
1+ package com . zetaplugins .serverlinksz ;
22
3+ import com .zetaplugins .serverlinksz .util .CommandManager ;
4+ import com .zetaplugins .serverlinksz .util .EventManager ;
5+ import com .zetaplugins .serverlinksz .util .LanguageManager ;
6+ import com .zetaplugins .serverlinksz .util .LinkManager ;
37import org .bukkit .plugin .java .JavaPlugin ;
4- import org .strassburger .serverlinksz .util .*;
5- import org .strassburger .serverlinksz .util .bStats .CustomCharts ;
6- import org .strassburger .serverlinksz .util .bStats .Metrics ;
8+ import com .zetaplugins .serverlinksz .util .bStats .CustomCharts ;
9+ import com .zetaplugins .serverlinksz .util .bStats .Metrics ;
710
811public final class ServerLinksZ extends JavaPlugin {
912 private CommandManager commandManager ;
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands ;
1+ package com . zetaplugins .serverlinksz .commands ;
22
33import net .kyori .adventure .text .Component ;
44import org .bukkit .command .CommandSender ;
5- import org . strassburger .serverlinksz .util .MessageUtils ;
5+ import com . zetaplugins .serverlinksz .util .MessageUtils ;
66
77public class CommandUtils {
88 /**
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands ;
1+ package com . zetaplugins .serverlinksz .commands ;
22
33import org .bukkit .command .Command ;
44import org .bukkit .command .CommandExecutor ;
55import org .bukkit .command .CommandSender ;
66import org .bukkit .command .TabCompleter ;
77import org .jetbrains .annotations .NotNull ;
8- import org . strassburger .serverlinksz .ServerLinksZ ;
9- import org . strassburger .serverlinksz .util .LinkManager ;
10- import org . strassburger .serverlinksz .util .MessageUtils ;
8+ import com . zetaplugins .serverlinksz .ServerLinksZ ;
9+ import com . zetaplugins .serverlinksz .util .LinkManager ;
10+ import com . zetaplugins .serverlinksz .util .MessageUtils ;
1111
1212import java .util .List ;
1313
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands ;
1+ package com . zetaplugins .serverlinksz .commands ;
22
33import org .bukkit .command .CommandSender ;
44
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands .maincommand ;
1+ package com . zetaplugins .serverlinksz .commands .maincommand ;
22
33import org .bukkit .command .Command ;
44import org .bukkit .command .CommandExecutor ;
55import org .bukkit .command .CommandSender ;
66import org .jetbrains .annotations .NotNull ;
7- import org . strassburger .serverlinksz .ServerLinksZ ;
8- import org . strassburger .serverlinksz .commands .SubCommand ;
9- import org . strassburger .serverlinksz .commands .maincommand .subcommands .AddSubCommand ;
10- import org . strassburger .serverlinksz .commands .maincommand .subcommands .HelpSubCommand ;
11- import org . strassburger .serverlinksz .commands .maincommand .subcommands .ReloadSubCommand ;
12- import org . strassburger .serverlinksz .commands .maincommand .subcommands .RemoveSubCommand ;
13- import org . strassburger .serverlinksz .util .MessageUtils ;
7+ import com . zetaplugins .serverlinksz .ServerLinksZ ;
8+ import com . zetaplugins .serverlinksz .commands .SubCommand ;
9+ import com . zetaplugins .serverlinksz .commands .maincommand .subcommands .AddSubCommand ;
10+ import com . zetaplugins .serverlinksz .commands .maincommand .subcommands .HelpSubCommand ;
11+ import com . zetaplugins .serverlinksz .commands .maincommand .subcommands .ReloadSubCommand ;
12+ import com . zetaplugins .serverlinksz .commands .maincommand .subcommands .RemoveSubCommand ;
13+ import com . zetaplugins .serverlinksz .util .MessageUtils ;
1414
1515import java .util .HashMap ;
1616import java .util .Map ;
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands .maincommand ;
1+ package com . zetaplugins .serverlinksz .commands .maincommand ;
22
33import org .bukkit .command .Command ;
44import org .bukkit .command .CommandSender ;
55import org .bukkit .command .TabCompleter ;
66import org .jetbrains .annotations .NotNull ;
77import org .jetbrains .annotations .Nullable ;
8- import org .strassburger .serverlinksz .ServerLinksZ ;
9- import org .strassburger .serverlinksz .util .LinkManager ;
8+ import com .zetaplugins .serverlinksz .ServerLinksZ ;
109
1110import java .util .ArrayList ;
1211import java .util .List ;
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands .maincommand .subcommands ;
1+ package com . zetaplugins .serverlinksz .commands .maincommand .subcommands ;
22
33import org .bukkit .command .CommandSender ;
4- import org .strassburger .serverlinksz .ServerLinksZ ;
5- import org .strassburger .serverlinksz .commands .CommandUtils ;
6- import org .strassburger .serverlinksz .commands .SubCommand ;
7- import org .strassburger .serverlinksz .util .LinkManager ;
8- import org .strassburger .serverlinksz .util .MessageUtils ;
4+ import com .zetaplugins .serverlinksz .ServerLinksZ ;
5+ import com .zetaplugins .serverlinksz .commands .CommandUtils ;
6+ import com .zetaplugins .serverlinksz .commands .SubCommand ;
7+ import com .zetaplugins .serverlinksz .util .MessageUtils ;
98
109import java .net .URI ;
1110import java .net .URISyntaxException ;
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands .maincommand .subcommands ;
1+ package com . zetaplugins .serverlinksz .commands .maincommand .subcommands ;
22
33import org .bukkit .command .CommandSender ;
4- import org . strassburger .serverlinksz .commands .SubCommand ;
5- import org . strassburger .serverlinksz .util .MessageUtils ;
4+ import com . zetaplugins .serverlinksz .commands .SubCommand ;
5+ import com . zetaplugins .serverlinksz .util .MessageUtils ;
66
77public class HelpSubCommand implements SubCommand {
88 @ Override
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands .maincommand .subcommands ;
1+ package com . zetaplugins .serverlinksz .commands .maincommand .subcommands ;
22
33import org .bukkit .command .CommandSender ;
4- import org .strassburger .serverlinksz .ServerLinksZ ;
5- import org .strassburger .serverlinksz .commands .CommandUtils ;
6- import org .strassburger .serverlinksz .commands .SubCommand ;
7- import org .strassburger .serverlinksz .util .LinkManager ;
8- import org .strassburger .serverlinksz .util .MessageUtils ;
4+ import com .zetaplugins .serverlinksz .ServerLinksZ ;
5+ import com .zetaplugins .serverlinksz .commands .CommandUtils ;
6+ import com .zetaplugins .serverlinksz .commands .SubCommand ;
7+ import com .zetaplugins .serverlinksz .util .MessageUtils ;
98
109public class ReloadSubCommand implements SubCommand {
1110 private final ServerLinksZ plugin ;
Original file line number Diff line number Diff line change 1- package org . strassburger .serverlinksz .commands .maincommand .subcommands ;
1+ package com . zetaplugins .serverlinksz .commands .maincommand .subcommands ;
22
33import org .bukkit .command .CommandSender ;
4- import org .strassburger .serverlinksz .ServerLinksZ ;
5- import org .strassburger .serverlinksz .commands .CommandUtils ;
6- import org .strassburger .serverlinksz .commands .SubCommand ;
7- import org .strassburger .serverlinksz .util .LinkManager ;
8- import org .strassburger .serverlinksz .util .MessageUtils ;
4+ import com .zetaplugins .serverlinksz .ServerLinksZ ;
5+ import com .zetaplugins .serverlinksz .commands .CommandUtils ;
6+ import com .zetaplugins .serverlinksz .commands .SubCommand ;
7+ import com .zetaplugins .serverlinksz .util .MessageUtils ;
98
109public class RemoveSubCommand implements SubCommand {
1110 private final ServerLinksZ plugin ;
You can’t perform that action at this time.
0 commit comments