Remove trailing whitespace

This commit is contained in:
Oleksii Holub
2019-04-12 13:48:13 +03:00
parent 1edeaf9d3a
commit a7da90943f
8 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
namespace DiscordChatExporter.Gui
{
public partial class App
{
{
}
}

View File

@@ -21,6 +21,6 @@ namespace DiscordChatExporter.Gui.ViewModels.Framework
}
public abstract class DialogScreen : DialogScreen<bool?>
{
{
}
}

View File

@@ -39,6 +39,6 @@ namespace DiscordChatExporter.Gui.ViewModels.Framework
public static ExportSetupViewModel CreateExportSetupViewModel(this IViewModelFactory factory,
GuildViewModel guild, ChannelViewModel channel)
=> factory.CreateExportSetupViewModel(guild, new[] {channel});
=> factory.CreateExportSetupViewModel(guild, new[] { channel });
}
}

View File

@@ -274,7 +274,7 @@ namespace DiscordChatExporter.Gui.ViewModels
}
// Get chat log
var chatLog = await _dataService.GetChatLogAsync(token, dialog.Guild, channel,
var chatLog = await _dataService.GetChatLogAsync(token, dialog.Guild, channel,
dialog.After, dialog.Before, operation);
// Export

View File

@@ -4,7 +4,7 @@
{
public RootView()
{
InitializeComponent();
InitializeComponent();
}
}
}