Removed the old StatsExporter since the stats are now included in HTMLExporter's output.

This commit is contained in:
Fabian Schlenz 2016-07-26 18:15:25 +02:00
parent cbdb5dfcb9
commit fad822d53d
1 changed files with 0 additions and 4 deletions

View File

@ -18,7 +18,6 @@ package de.fabianonline.telegram_backup;
import de.fabianonline.telegram_backup.TelegramUpdateHandler;
import de.fabianonline.telegram_backup.exporter.HTMLExporter;
import de.fabianonline.telegram_backup.exporter.StatsExporter;
import com.github.badoualy.telegram.api.Kotlogram;
import com.github.badoualy.telegram.api.TelegramApp;
@ -134,9 +133,6 @@ public class CommandLineController {
if (CommandLineOptions.val_export.toLowerCase().equals("html")) {
(new HTMLExporter()).export(user);
System.exit(0);
} else if (CommandLineOptions.val_export.toLowerCase().equals("stats")) {
(new StatsExporter()).export(user);
System.exit(0);
} else {
show_error("Unknown export format.");
}