lib/barrier: Remove unused code
This commit is contained in:
parent
8586b0a581
commit
62913ab748
|
@ -17,8 +17,6 @@
|
|||
|
||||
#include "barrier/StreamChunker.h"
|
||||
|
||||
#include "mt/Lock.h"
|
||||
#include "mt/Mutex.h"
|
||||
#include "barrier/FileChunk.h"
|
||||
#include "barrier/ClipboardChunk.h"
|
||||
#include "barrier/protocol_types.h"
|
||||
|
@ -39,7 +37,6 @@ static const size_t g_chunkSize = 32 * 1024; //32kb
|
|||
|
||||
bool StreamChunker::s_isChunkingFile = false;
|
||||
bool StreamChunker::s_interruptFile = false;
|
||||
Mutex* StreamChunker::s_interruptMutex = NULL;
|
||||
|
||||
void
|
||||
StreamChunker::sendFile(const char* filename,
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#include "base/String.h"
|
||||
|
||||
class IEventQueue;
|
||||
class Mutex;
|
||||
|
||||
class StreamChunker {
|
||||
public:
|
||||
|
@ -38,5 +37,4 @@ public:
|
|||
private:
|
||||
static bool s_isChunkingFile;
|
||||
static bool s_interruptFile;
|
||||
static Mutex* s_interruptMutex;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue