* DiscImageChef/Options.cs:

* DiscImageChef/Commands/Checksum.cs:
	* DiscImageChef/DiscImageChef.csproj:
	* DiscImageChef.Checksums/FletcherContext.cs:
	  Disabled Fletcher as it is abnormally slow.

	* DiscImageChef/Commands/Benchmark.cs:
	  Corrected style.
This commit is contained in:
2015-11-30 23:00:47 +00:00
parent 27989589f0
commit 690e35e931
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2015-11-30 Natalia Portillo <claunia@claunia.com>
* FletcherContext.cs:
Disabled Fletcher as it is abnormally slow.
2015-10-19 Natalia Portillo <claunia@claunia.com>
* DiscImageChef.Checksums.csproj:

View File

@@ -35,6 +35,9 @@ Implements Fletcher-32 and Fletcher-16 algorithms.
Copyright (C) 2011-2015 Claunia.com
****************************************************************************/
//$Id$
// Disabled because the speed is abnormally slow
/*
using System;
using System.Text;
using System.IO;
@@ -455,4 +458,4 @@ namespace DiscImageChef.Checksums
}
}
}
*/