Remove unused function

This commit is contained in:
Ske 2019-06-15 11:55:40 +02:00
parent 1e1ef4495f
commit e66c815295

View File

@ -113,19 +113,5 @@ namespace PluralKit.Bot.Commands
await Context.Channel.SendFileAsync(stream, "system.json", $"{Emojis.Success} Here you go!");
});
}
private DataFileSystem? TryDeserialize(string json)
{
try
{
}
catch (JsonException e)
{
Console.WriteLine("uww");
}
return null;
}
}
}