Remove unused assignment

This commit is contained in:
Ske 2020-04-29 02:35:46 +02:00
parent 12aef1f61d
commit 697a24c4fa

View File

@ -63,7 +63,6 @@ namespace PluralKit.Bot
embedTitle, embedTitle,
async (builder, switches) => async (builder, switches) =>
{ {
var outputStr = "";
foreach (var entry in switches) foreach (var entry in switches)
{ {
var lastSw = entry.LastTime; var lastSw = entry.LastTime;
@ -98,8 +97,6 @@ namespace PluralKit.Bot
break; break;
}// TODO: Make sure this works }// TODO: Make sure this works
} }
builder.Description = outputStr;
} }
); );
} }