aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BaseItem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-19 23:53:15 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-19 23:53:15 -0500
commit13e4b2a6a76df957a85e444822c816b42f2bb60c (patch)
tree35140e9b5447937ad70744c6605b9c890cb342a2 /MediaBrowser.Controller/Entities/BaseItem.cs
parent120c8bcbb9381086bf9171eae1ba2df9b3c11bde (diff)
add search methods to remote metadata providers
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
-rw-r--r--MediaBrowser.Controller/Entities/BaseItem.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index 224907a72..cf79148f6 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/MediaBrowser.Controller/Entities/BaseItem.cs
@@ -912,32 +912,6 @@ namespace MediaBrowser.Controller.Entities
}
}
- /// <summary>
- /// Determine if we have changed vs the passed in copy
- /// </summary>
- /// <param name="copy">The copy.</param>
- /// <returns><c>true</c> if the specified copy has changed; otherwise, <c>false</c>.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- public virtual bool HasChanged(BaseItem copy)
- {
- if (copy == null)
- {
- throw new ArgumentNullException();
- }
- if (IsInMixedFolder != copy.IsInMixedFolder)
- {
- Logger.Debug(Name + " changed due to different value for IsInMixedFolder.");
- return true;
- }
-
- var changed = copy.DateModified != DateModified;
- if (changed)
- {
- Logger.Debug(Name + " changed - original creation: " + DateCreated + " new creation: " + copy.DateCreated + " original modified: " + DateModified + " new modified: " + copy.DateModified);
- }
- return changed;
- }
-
public virtual string GetClientTypeName()
{
return GetType().Name;