diff --git a/src/main/java/net/fabricmc/stitch/commands/tinyv2/CommandMergeTinyV2.java b/src/main/java/net/fabricmc/stitch/commands/tinyv2/CommandMergeTinyV2.java
index 4257ec0..dbd4ba2 100644
--- a/src/main/java/net/fabricmc/stitch/commands/tinyv2/CommandMergeTinyV2.java
+++ b/src/main/java/net/fabricmc/stitch/commands/tinyv2/CommandMergeTinyV2.java
@@ -26,6 +26,7 @@
import java.util.HashSet;
import java.util.List;
import java.util.Map;
+import java.util.Objects;
import java.util.Set;
import java.util.function.Function;
import java.util.regex.Pattern;
@@ -39,11 +40,11 @@
import net.fabricmc.stitch.util.Pair;
/**
- * Merges a tiny file with 2 columns (namespaces) of mappings, with another tiny file that has
- * the same namespace as the first column and a different namespace as the second column.
- * The first column of the output will contain the shared namespace,
- * the second column of the output would be the second namespace of input a,
- * and the third column of the output would be the second namespace of input b
+ * Merges a tiny file with at least 2 columns (namespaces) of mappings, with another tiny
+ * file that has the same namespace as the first column and different namespaces as the
+ * other columns. The first column of the output will contain the shared namespace, the
+ * next columns of the output would be the namespaces of all inputs, excluding the first
+ * column namespace
*
* Descriptors will remain as-is (using the namespace of the first column)
*
@@ -65,12 +66,6 @@
* intermediary named official
* c net/minecraft/class_123 net/minecraft/somePackage/someClass a
* m (Lnet/minecraft/class_124;)V method_1234 someMethod a
- *
- *
- * After intermediary-named mappings are obtained,
- * and official-intermediary mappings are obtained and swapped using CommandReorderTinyV2, Loom merges them using this command,
- * and then reorders it to official-intermediary-named using CommandReorderTinyV2 again.
- * This is a convenient way of storing all the mappings in Loom.
*/
public class CommandMergeTinyV2 extends Command {
public CommandMergeTinyV2() {
@@ -82,62 +77,67 @@ public CommandMergeTinyV2() {
*/
@Override
public String getHelpString() {
- return "