File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Core/Libraries/Source/Compression Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ enum CompressionType
3232 COMPRESSION_MIN = 0 ,
3333 COMPRESSION_NONE = COMPRESSION_MIN,
3434 COMPRESSION_REFPACK,
35- COMPRESSION_MAX = COMPRESSION_REFPACK,
3635 COMPRESSION_NOXLZH,
3736 COMPRESSION_ZLIB1,
3837 COMPRESSION_ZLIB2,
@@ -45,6 +44,7 @@ enum CompressionType
4544 COMPRESSION_ZLIB9,
4645 COMPRESSION_BTREE,
4746 COMPRESSION_HUFF,
47+ COMPRESSION_MAX = COMPRESSION_HUFF,
4848};
4949
5050class CompressionManager
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ const char *CompressionManager::getCompressionNameByType( CompressionType compTy
4545 static const char *s_compressionNames[COMPRESSION_MAX+1 ] = {
4646 " No compression" ,
4747 " RefPack" ,
48- /*
4948 " LZHL" ,
5049 " ZLib 1 (fast)" ,
5150 " ZLib 2" ,
@@ -58,7 +57,6 @@ const char *CompressionManager::getCompressionNameByType( CompressionType compTy
5857 " ZLib 9 (slow)" ,
5958 " BTree" ,
6059 " Huff" ,
61- */
6260 };
6361 return s_compressionNames[compType];
6462}
@@ -69,7 +67,6 @@ const char *CompressionManager::getDecompressionNameByType( CompressionType comp
6967 static const char *s_decompressionNames[COMPRESSION_MAX+1 ] = {
7068 " d_None" ,
7169 " d_RefPack" ,
72- /*
7370 " d_NoxLZW" ,
7471 " d_ZLib1" ,
7572 " d_ZLib2" ,
@@ -82,7 +79,6 @@ const char *CompressionManager::getDecompressionNameByType( CompressionType comp
8279 " d_ZLib9" ,
8380 " d_BTree" ,
8481 " d_Huff" ,
85- */
8682 };
8783 return s_decompressionNames[compType];
8884}
You can’t perform that action at this time.
0 commit comments