mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-17 18:09:33 +00:00
spelling: benchmark
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
eeaa0719b2
commit
a2e2edd4a6
@@ -6,7 +6,7 @@ public class LzmaAlone
|
||||
{
|
||||
public static final int kEncode = 0;
|
||||
public static final int kDecode = 1;
|
||||
public static final int kBenchmak = 2;
|
||||
public static final int kBenchmark = 2;
|
||||
|
||||
public int Command = -1;
|
||||
public int NumBenchmarkPasses = 10;
|
||||
@@ -108,13 +108,13 @@ public class LzmaAlone
|
||||
else if (s.equalsIgnoreCase("d"))
|
||||
Command = kDecode;
|
||||
else if (s.equalsIgnoreCase("b"))
|
||||
Command = kBenchmak;
|
||||
Command = kBenchmark;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
else if(pos == 1)
|
||||
{
|
||||
if (Command == kBenchmak)
|
||||
if (Command == kBenchmark)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -178,7 +178,7 @@ public class LzmaAlone
|
||||
return;
|
||||
}
|
||||
|
||||
if (params.Command == CommandLine.kBenchmak)
|
||||
if (params.Command == CommandLine.kBenchmark)
|
||||
{
|
||||
int dictionary = (1 << 21);
|
||||
if (params.DictionarySizeIsDefined)
|
||||
|
||||
Reference in New Issue
Block a user