Skip to content

Commit

Permalink
更新代码
Browse files Browse the repository at this point in the history
  • Loading branch information
lumiaoshan committed Oct 26, 2023
1 parent cc7d0a9 commit ad3f67d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AirdPro/Algorithms/Compressor/CoreComp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public override void compress(Spectrum spectrum, TempScan ts)
int[] intensitySubArray = new int[j];
Array.Copy(intensityArray, intensitySubArray, j);


byte[] compressedMzArray = ComboComp.encode(mzIntComp, mzByteComp, mzSubArray);
byte[] compressedIntArray = ComboComp.encode(intIntComp, intByteComp, intensitySubArray);

Expand Down
10 changes: 5 additions & 5 deletions AirdPro/Converters/Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,16 @@ public void doConvert()
{
msd.Dispose();
}

if (msdList != null)
{
msdList.Dispose();
}
}
if (msdList != null)
{
msdList.Dispose();
}
}
finally
{
finish();

}
}

Expand Down

0 comments on commit ad3f67d

Please sign in to comment.