mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-08 08:33:11 +01:00
17 lines
620 B
C#
17 lines
620 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Microsoft.AspNet.SignalR.Hubs
|
|
{
|
|
public class NullJavaScriptMinifier : IJavaScriptMinifier
|
|
{
|
|
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes", Justification = "This is a singleton")]
|
|
public static readonly NullJavaScriptMinifier Instance = new NullJavaScriptMinifier();
|
|
|
|
public string Minify(string source)
|
|
{
|
|
return source;
|
|
}
|
|
}
|
|
}
|