aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Plugins/BasePluginOfT.cs
AgeCommit message (Collapse)Author
2025-04-26Optimize migrations (#13855)Tim Eisele
2024-12-12move to new System.Threading.Lock type for better performanceDaniyar Alpyspayev
2024-11-16Update projects to .NET 9 (#13023)Bond-009
2023-04-06Remove redundant ToString callStepan Goremykin
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2021-08-15Minor improvementsBond_009
2021-05-06Merge pull request #5982 from Bond-009/nullableBond-009
2021-05-05Code Clean up: Convert to null-coalescing operator ?? (#5845)BaronGreenback
Co-authored-by: Cody Robibero <cody@robibe.ro> Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com>
2021-05-05Enable nullable reference types for MediaBrowser.CommonBond_009
2021-03-13FxCop -> Net Analyzers (part 2)Bond_009
2020-12-23Changes as requestedBaronGreenback
2020-12-18reverted changeBaronGreenback
2020-12-18corrected.BaronGreenback
2020-12-18Renamed Guid property to IdGreenback
2020-12-18Removed maxAbiGreenback