Skip to content

Commit

Permalink
remove NesBox
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Nov 25, 2015
1 parent ba6adc9 commit ddf55f7
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions MediaBrowser.LocalMetadata/Parsers/GameXmlParser.cs
Expand Up @@ -62,26 +62,6 @@ protected override void FetchDataFromXmlNode(XmlReader reader, MetadataResult<Ga
break;
}

case "NesBox":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
item.SetProviderId(MetadataProviders.NesBox, val);
}
break;
}

case "NesBoxRom":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
item.SetProviderId(MetadataProviders.NesBoxRom, val);
}
break;
}

case "Players":
{
var val = reader.ReadElementContentAsString();
Expand Down

0 comments on commit ddf55f7

Please sign in to comment.