remove stray debugging code

This commit is contained in:
Eliot Jones 2022-05-10 10:14:36 -04:00
parent 4e490d63be
commit ddab53e456

View File

@ -1,7 +1,6 @@
namespace UglyToad.PdfPig.Encryption
{
using System;
using System.Diagnostics;
using System.IO;
using System.Security.Cryptography;
@ -29,11 +28,6 @@
var buffer = new byte[256];
if (data.Length > 256)
{
Debugger.Break();
}
using (var decryptor = rijndael.CreateDecryptor(rijndael.Key, rijndael.IV))
using (var input = new MemoryStream(data))
using (var output = new MemoryStream())