diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-03-06 20:02:42 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-03-06 20:02:42 -0500 |
| commit | 7b37ae94f7773069b1406728e297a012e3f726cc (patch) | |
| tree | dfa4d8b768d14947d694e03359777518d696d7b3 | |
| parent | f638ee6b0918c2ef05ec11cfa43584d3efad68d1 (diff) | |
Remove unused factory method
| -rw-r--r-- | Jellyfin.Data/Entities/AccessSchedule.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Jellyfin.Data/Entities/AccessSchedule.cs b/Jellyfin.Data/Entities/AccessSchedule.cs index 9ac0666ac..7974d3add 100644 --- a/Jellyfin.Data/Entities/AccessSchedule.cs +++ b/Jellyfin.Data/Entities/AccessSchedule.cs @@ -58,18 +58,5 @@ namespace Jellyfin.Data.Entities /// </summary> /// <value>The end hour.</value> public double EndHour { get; set; } - - /// <summary> - /// Static create function (for use in LINQ queries, etc.) - /// </summary> - /// <param name="dayOfWeek">The day of the week.</param> - /// <param name="startHour">The start hour.</param> - /// <param name="endHour">The end hour.</param> - /// <param name="userId">The associated user's id.</param> - /// <returns>The newly created instance.</returns> - public static AccessSchedule Create(DynamicDayOfWeek dayOfWeek, double startHour, double endHour, Guid userId) - { - return new AccessSchedule(dayOfWeek, startHour, endHour, userId); - } } } |
