Skip to content

Commit 378990d

Browse files
committed
Remove commented out code
1 parent 1f0491c commit 378990d

File tree

1 file changed

+3
-8
lines changed
  • xivModdingFramework/Variants/FileTypes

1 file changed

+3
-8
lines changed

xivModdingFramework/Variants/FileTypes/Imc.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -276,14 +276,9 @@ public async Task SaveFullImcInfo(FullImcInfo info, string path, string itemName
276276

277277
// That's it.
278278

279-
// Get outta here with your fancy operators
280-
//itemName ??= Path.GetFileName(path);
281-
//category ??= "Meta";
282-
//source ??= "Internal";
283-
284-
itemName = itemName ?? Path.GetFileName(path);
285-
category = category ?? "Meta";
286-
source = source ?? "Internal";
279+
itemName ??= Path.GetFileName(path);
280+
category ??= "Meta";
281+
source ??= "Internal";
287282

288283
await dat.ImportType2Data(data.ToArray(), itemName, path, category, source);
289284
}

0 commit comments

Comments
 (0)