mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
18 lines
620 B
C#
18 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;
|
|
}
|
|
}
|
|
}
|