Skip to content

Commit

Permalink
fixed Identity.ToString() potential NullReferenceException
Browse files Browse the repository at this point in the history
  • Loading branch information
Horusiath committed Mar 1, 2015
1 parent 576ab18 commit 7e00996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka/Actor/AutoReceivedMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public Identify(object messageId)

public override string ToString()
{
return "<Identify>: " + MessageId.ToString();
return "<Identify>: " + MessageId;
}
}

Expand Down

2 comments on commit 7e00996

@Petabridge-CI
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Akka.NET :: Akka.NET PR Build Build 75 is now running

@Petabridge-CI
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Akka.NET :: Akka.NET PR Build Build 75 outcome was SUCCESS
Summary: Tests passed: 822, ignored: 47 Build time: 00:09:30

Please sign in to comment.