Remove AssetServer dtor

This commit is contained in:
Ryan Huffman 2015-08-26 15:37:38 -07:00
parent d66c521200
commit 287f2533eb
2 changed files with 0 additions and 4 deletions

View file

@ -42,9 +42,6 @@ AssetServer::AssetServer(NLPacket& packet) :
packetReceiver.registerMessageListener(PacketType::AssetUpload, this, "handleAssetUpload");
}
AssetServer::~AssetServer() {
}
void AssetServer::run() {
ThreadedAssignment::commonInit(ASSET_SERVER_LOGGING_TARGET_NAME, NodeType::AssetServer);

View file

@ -22,7 +22,6 @@ class AssetServer : public ThreadedAssignment {
Q_OBJECT
public:
AssetServer(NLPacket& packet);
~AssetServer();
static QString hashData(const QByteArray& data);