Skip to content

Commit

Permalink
Minor editing
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyWk committed Nov 29, 2014
1 parent e5b1ac0 commit 80305d0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions POP3Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ private void InternalClose()
#endregion

#region Internal Send/Receive functions
// These functions will be public until I finish the public API.

private void SendCommand(string format, params object[] args)
{
Expand Down Expand Up @@ -459,7 +458,7 @@ public List<POPMessage> GetMessages()
{
var messageList = new List<POPMessage>();

foreach(KeyValuePair<int,int> kv in ListMessages())
foreach(KeyValuePair<int, int> kv in ListMessages())
{
POPMessage m = GetMessage(kv.Key);
if(m != null)
Expand Down

0 comments on commit 80305d0

Please sign in to comment.