removed redundant qualifiers.

This commit is contained in:
kay.one 2013-07-23 22:35:32 -07:00
commit e89a35522e
35 changed files with 128 additions and 106 deletions

View file

@ -74,18 +74,18 @@ namespace NzbDrone.Core.Indexers
public void CheckForError()
{
if (this.MoveToContent() == XmlNodeType.Element)
if (MoveToContent() == XmlNodeType.Element)
{
if (this.Name != "error")
if (Name != "error")
return;
var message = "Error: ";
if (this.HasAttributes)
if (HasAttributes)
{
while (this.MoveToNextAttribute())
while (MoveToNextAttribute())
{
message += String.Format(" [{0}:{1}]", this.Name, this.Value);
message += String.Format(" [{0}:{1}]", Name, Value);
}
}