Skip to content

Commit d7fc40e

Browse files
committed
Remove deprecated code
MultiPlayerGameModeMixin.java missing in MIXIN (it was removed) Remove method that is never used (Unused since 64c4f18 )
1 parent 3fb0ff5 commit d7fc40e

3 files changed

Lines changed: 0 additions & 57 deletions

File tree

src/main/java/nekiplay/main/events/ClickWindowEvent.java

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

src/main/java/nekiplay/meteorplus/mixin/minecraft/MultiPlayerGameModeMixin.java

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

src/main/java/nekiplay/meteorplus/utils/ColorRemover.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,4 @@ public static String GetVerbatim(String text) {
1313

1414
return new String(data, 0, idx);
1515
}
16-
17-
public static String GetVerbatimAll(String text) {
18-
int idx = 0;
19-
var data = new char[text.length()];
20-
21-
for (int i = 0; i < text.length(); i++)
22-
if (text.charAt(i) != '§' && text.charAt(i) != '&')
23-
data[idx++] = text.charAt(i);
24-
else
25-
i++;
26-
27-
return new String(data, 0, idx);
28-
}
2916
}

0 commit comments

Comments
 (0)