Skip to content

Commit 8e79477

Browse files
toncijukic_cptoncijukic_cp
authored andcommitted
Code cleanup.
1 parent 69906ff commit 8e79477

12 files changed

Lines changed: 2 additions & 3 deletions

Class Library/ActiveUp.Net.Common/Codec.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ public static string GetCRCBase64(string base64input)
336336
const long CRC24_INIT = 0xb704ceL;
337337
const long CRC24_POLY = 0x1864cfbL;
338338
long crc = CRC24_INIT;
339-
for (int i = 0; i < binput.Length; i++)
339+
foreach (byte t in binput)
340340
{
341-
crc ^= (((long)binput[i]) << 16);
341+
crc ^= (((long)t) << 16);
342342
for (int j = 0; j < 8; j++)
343343
{
344344
crc <<= 1;

Class Library/ActiveUp.Net.Common/MimePart.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// along with SharpMap; if not, write to the Free Software
1616
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1717

18-
using ActiveUp.Net.Mail;
1918
using ActiveUp.Net.Mail;
2019
using System.Collections.Specialized;
2120
#if !PocketPC
0 Bytes
Binary file not shown.

Samples/Lib/ActiveUp.Net.Dns.dll

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Samples/Lib/ActiveUp.Net.Imap4.dll

0 Bytes
Binary file not shown.

Samples/Lib/ActiveUp.Net.Mail.dll

0 Bytes
Binary file not shown.

Samples/Lib/ActiveUp.Net.Nntp.dll

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Samples/Lib/ActiveUp.Net.Pop3.dll

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)