Skip to content

Commit d4530ef

Browse files
committed
Organize imports alphabetically
1 parent d5f47b1 commit d4530ef

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/main/java/net/thenextlvl/portals/plugin/adapters/EntryActionAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
import net.thenextlvl.nbt.tag.CompoundTag;
1111
import net.thenextlvl.nbt.tag.Tag;
1212
import net.thenextlvl.portals.PortalLike;
13-
import net.thenextlvl.portals.plugin.PortalsPlugin;
1413
import net.thenextlvl.portals.action.ActionTypeRegistry;
1514
import net.thenextlvl.portals.action.EntryAction;
1615
import net.thenextlvl.portals.bounds.Bounds;
16+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1717
import org.bukkit.Location;
1818
import org.jspecify.annotations.NullMarked;
1919

src/main/java/net/thenextlvl/portals/plugin/adapters/PortalAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import net.thenextlvl.nbt.tag.CompoundTag;
88
import net.thenextlvl.nbt.tag.Tag;
99
import net.thenextlvl.portals.Portal;
10-
import net.thenextlvl.portals.plugin.PortalsPlugin;
1110
import net.thenextlvl.portals.action.EntryAction;
11+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1212
import net.thenextlvl.portals.plugin.portal.PaperPortal;
1313
import net.thenextlvl.portals.shape.BoundingBox;
1414
import org.jspecify.annotations.NullMarked;

src/main/java/net/thenextlvl/portals/plugin/commands/action/ActionCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import com.mojang.brigadier.context.CommandContext;
44
import io.papermc.paper.command.brigadier.CommandSourceStack;
55
import net.thenextlvl.portals.Portal;
6-
import net.thenextlvl.portals.plugin.PortalsPlugin;
76
import net.thenextlvl.portals.action.ActionType;
87
import net.thenextlvl.portals.action.EntryAction;
8+
import net.thenextlvl.portals.plugin.PortalsPlugin;
99
import net.thenextlvl.portals.plugin.commands.brigadier.SimpleCommand;
1010
import org.jspecify.annotations.NullMarked;
1111

src/main/java/net/thenextlvl/portals/plugin/commands/action/ConnectCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import io.papermc.paper.command.brigadier.CommandSourceStack;
66
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
77
import net.thenextlvl.portals.Portal;
8-
import net.thenextlvl.portals.plugin.PortalsPlugin;
98
import net.thenextlvl.portals.action.ActionTypes;
9+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1010
import org.jspecify.annotations.NullMarked;
1111

1212
@NullMarked

src/main/java/net/thenextlvl/portals/plugin/commands/action/RunConsoleCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import io.papermc.paper.command.brigadier.CommandSourceStack;
66
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
77
import net.thenextlvl.portals.Portal;
8-
import net.thenextlvl.portals.plugin.PortalsPlugin;
98
import net.thenextlvl.portals.action.ActionTypes;
9+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1010
import org.jspecify.annotations.NullMarked;
1111

1212
@NullMarked

src/main/java/net/thenextlvl/portals/plugin/commands/action/RunPlayerCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import io.papermc.paper.command.brigadier.CommandSourceStack;
66
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
77
import net.thenextlvl.portals.Portal;
8-
import net.thenextlvl.portals.plugin.PortalsPlugin;
98
import net.thenextlvl.portals.action.ActionTypes;
9+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1010
import org.jspecify.annotations.NullMarked;
1111

1212
@NullMarked

src/main/java/net/thenextlvl/portals/plugin/commands/action/StringActionCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import com.mojang.brigadier.context.CommandContext;
66
import io.papermc.paper.command.brigadier.CommandSourceStack;
77
import io.papermc.paper.command.brigadier.Commands;
8-
import net.thenextlvl.portals.plugin.PortalsPlugin;
98
import net.thenextlvl.portals.action.ActionType;
9+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1010
import org.jspecify.annotations.NullMarked;
1111

1212
@NullMarked

src/main/java/net/thenextlvl/portals/plugin/commands/action/TeleportCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import net.kyori.adventure.text.minimessage.tag.resolver.Formatter;
1212
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
1313
import net.thenextlvl.portals.Portal;
14-
import net.thenextlvl.portals.plugin.PortalsPlugin;
1514
import net.thenextlvl.portals.action.ActionTypes;
15+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1616
import net.thenextlvl.portals.plugin.model.LazyLocation;
1717
import org.bukkit.Location;
1818
import org.bukkit.World;

src/main/java/net/thenextlvl/portals/plugin/commands/action/TeleportPortalCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
88
import net.thenextlvl.portals.Portal;
99
import net.thenextlvl.portals.PortalLike;
10-
import net.thenextlvl.portals.plugin.PortalsPlugin;
1110
import net.thenextlvl.portals.action.ActionTypes;
11+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1212
import net.thenextlvl.portals.plugin.commands.arguments.PortalArgumentType;
1313
import org.jspecify.annotations.NullMarked;
1414

src/main/java/net/thenextlvl/portals/plugin/commands/action/TeleportRandomCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
import net.kyori.adventure.text.minimessage.tag.resolver.Formatter;
1313
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
1414
import net.thenextlvl.portals.Portal;
15-
import net.thenextlvl.portals.plugin.PortalsPlugin;
1615
import net.thenextlvl.portals.action.ActionTypes;
1716
import net.thenextlvl.portals.bounds.Bounds;
17+
import net.thenextlvl.portals.plugin.PortalsPlugin;
1818
import org.bukkit.World;
1919
import org.jspecify.annotations.NullMarked;
2020

0 commit comments

Comments
 (0)