diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-25 13:18:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-25 13:18:56 -0400 |
| commit | 8d5c0cbe0420efabdfccef5e1d98972ab085a1bf (patch) | |
| tree | de80df6abf4722e93ea07477a28e56b1159b044b /MediaBrowser.Controller/Entities/Folder.cs | |
| parent | 70844a3b344ce0cd7aa74c1854a28053aa7a40e8 (diff) | |
fixes around saving music brainz id's to xml
Diffstat (limited to 'MediaBrowser.Controller/Entities/Folder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index 9ee618f78..91f4504c2 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -67,21 +67,6 @@ namespace MediaBrowser.Controller.Entities } } - /// <summary> - /// Return the id that should be used to key display prefs for this item. - /// Default is based on the type for everything except actual generic folders. - /// </summary> - /// <value>The display prefs id.</value> - [IgnoreDataMember] - public virtual Guid DisplayPreferencesId - { - get - { - var thisType = GetType(); - return thisType == typeof(Folder) ? Id : thisType.FullName.GetMD5(); - } - } - public virtual List<LinkedChild> LinkedChildren { get; set; } protected virtual bool SupportsShortcutChildren |
