diff --git a/include/Swiften/Parser/PayloadParsers/PubSubPayloadParser.cpp b/include/Swiften/Parser/PayloadParsers/PubSubPayloadParser.cpp deleted file mode 100644 index c3e151bb1ed4af5fb3fb2aa99b12701af2362674..0000000000000000000000000000000000000000 --- a/include/Swiften/Parser/PayloadParsers/PubSubPayloadParser.cpp +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) 2012 Jan Kaluza - * Licensed under the Simplified BSD license. - * See Documentation/Licenses/BSD-simplified.txt for more information. - */ - -#include - -#include - -#include -#include -#include -#include -#include - -namespace Swift { - -void PubSubPayloadParser::handleTree(ParserElement::ref root) { - foreach (ParserElement::ref child, root->getAllChildren()) { - getPayloadInternal()->addPayload(TreeReparser::parseTree(child, factories)); - } -} - -}