aboutsummaryrefslogtreecommitdiff
path: root/staging/adblock/plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'staging/adblock/plugin.cpp')
-rw-r--r--staging/adblock/plugin.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/staging/adblock/plugin.cpp b/staging/adblock/plugin.cpp
deleted file mode 100644
index b4f1b56..0000000
--- a/staging/adblock/plugin.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * This file is part of smolbote. It's copyrighted by the contributors recorded
- * in the version control history of the file, available from its original
- * location: https://library.iserlohn-fortress.net/aqua/smolbote.git
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#include "plugin.h"
-#include "filterlist.h"
-#include <QTextStream>
-
-Filter* AdblockPlusFilterPlugin::load(QIODevice* from) const
-{
- if(!from->isOpen())
- return nullptr;
-
- QTextStream stream(from);
- auto *list = new AdblockPlus::FilterList;
- const auto result = list->parse(stream);
-
- if(result.state != AdblockPlus::FilterList::Ok) {
- delete list;
- list = nullptr;
- }
-
- return list;
-}
-