mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
remove stray debugging code
This commit is contained in:
parent
4e490d63be
commit
ddab53e456
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user