@@ -47,7 +47,8 @@ public enum MappingFormat {
47
47
TSRG_2_FILE (null , null , FileType .TSRG , net .fabricmc .mappingio .format .MappingFormat .TSRG_2_FILE ),
48
48
PROGUARD (null , ProguardMappingsReader .INSTANCE , FileType .TXT , net .fabricmc .mappingio .format .MappingFormat .PROGUARD_FILE ),
49
49
RECAF (RecafMappingsWriter .INSTANCE , RecafMappingsReader .INSTANCE , FileType .TXT , net .fabricmc .mappingio .format .MappingFormat .RECAF_SIMPLE_FILE ),
50
- JOBF_FILE (null , null , FileType .JOBF , net .fabricmc .mappingio .format .MappingFormat .JOBF_FILE );
50
+ JOBF_FILE (null , null , FileType .JOBF , net .fabricmc .mappingio .format .MappingFormat .JOBF_FILE ),
51
+ INTELLIJ_MIGRATION_MAP_FILE (null , null , FileType .XML , net .fabricmc .mappingio .format .MappingFormat .INTELLIJ_MIGRATION_MAP_FILE );
51
52
52
53
private final MappingsWriter writer ;
53
54
private final MappingsReader reader ;
@@ -209,6 +210,7 @@ public record FileType(List<String> extensions) {
209
210
public static final FileType TSRG = new FileType (".tsrg" );
210
211
public static final FileType TXT = new FileType (".txt" );
211
212
public static final FileType JOBF = new FileType (".jobf" );
213
+ public static final FileType XML = new FileType (".xml" );
212
214
213
215
public FileType (String ... extensions ) {
214
216
this (List .of (extensions ));
0 commit comments