Index: src/libchcore/TSubTaskFastMove.cpp
===================================================================
diff -u -rb193a95402f2bf4c456fb9d65d111caaf6994823 -r0b8ae6ab8b538881b651126bf8e6de9c9912a782
--- src/libchcore/TSubTaskFastMove.cpp	(.../TSubTaskFastMove.cpp)	(revision b193a95402f2bf4c456fb9d65d111caaf6994823)
+++ src/libchcore/TSubTaskFastMove.cpp	(.../TSubTaskFastMove.cpp)	(revision 0b8ae6ab8b538881b651126bf8e6de9c9912a782)
@@ -33,8 +33,6 @@
 #include "..\libicpf\log.h"
 #include "TFileInfo.h"
 #include <boost\lexical_cast.hpp>
-#include "SerializationHelpers.h"
-#include "TBinarySerializer.h"
 #include "DataBuffer.h"
 #include "TCoreException.h"
 #include "ErrorCodes.h"
@@ -56,6 +54,7 @@
 	{
 	}
 
+/*
 	void TFastMoveProgressInfo::Serialize(TReadBinarySerializer& rSerializer)
 	{
 		boost::unique_lock<boost::shared_mutex> lock(m_lock);
@@ -67,6 +66,7 @@
 		boost::shared_lock<boost::shared_mutex> lock(m_lock);
 		Serializers::Serialize(rSerializer, m_stCurrentIndex);
 	}
+*/
 
 	void TFastMoveProgressInfo::ResetProgress()
 	{
@@ -293,4 +293,14 @@
 	m_tSubTaskStats.GetSnapshot(spStats);
 }
 
+void TSubTaskFastMove::Store(const ISerializerPtr& spSerializer) const
+{
+	spSerializer;
+}
+
+void TSubTaskFastMove::Load(const ISerializerPtr& spSerializer)
+{
+	spSerializer;
+}
+
 END_CHCORE_NAMESPACE