Skip to content

Commit c7e9e85

Browse files
chore: pre-commit changes [skip ci]
1 parent f1d4a9e commit c7e9e85

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

core/src/main/java/com/sekwah/advancedportals/core/tags/DestiTag.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ public boolean activated(TagTarget target, PlayerContainer player,
154154

155155
for (var destiTag : destination.getArgs()) {
156156
Tag.Activation activationHandler =
157-
tagRegistry.getActivationHandler(destiTag.NAME,
158-
Tag.TagType.DESTINATION);
157+
tagRegistry.getActivationHandler(destiTag.NAME,
158+
Tag.TagType.DESTINATION);
159159
if (activationHandler != null) {
160-
activationHandler.activated(target, player,
161-
activationData, argData);
160+
activationHandler.activated(target, player, activationData,
161+
argData);
162162
}
163163
}
164164

core/src/main/java/com/sekwah/advancedportals/core/util/TagReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static ArrayList<DataTag> getTagsFromArgs(String[] args) {
6565

6666
if (inQuotes && arg.endsWith("\"")) {
6767
inQuotes = false;
68-
if(currentValue.length() > 1) {
68+
if (currentValue.length() > 1) {
6969
currentValue.deleteCharAt(currentValue.length() - 1);
7070
}
7171
}

0 commit comments

Comments
 (0)