Skip to content
This repository was archived by the owner on Nov 20, 2023. It is now read-only.

make a few classes static #273

Merged
merged 1 commit into from
Mar 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Microsoft.Tye.Core/ApplicationYamlWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Microsoft.Tye
{
public sealed class ApplicationYamlWriter
public static class ApplicationYamlWriter
{
public static Task WriteAsync(OutputContext output, StreamWriter writer, ApplicationBuilder application)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ internal static class SpanAttributeConstants
public static readonly string HttpFlavorKey = "http.flavor";
}

internal sealed class LoggingEventSource
internal static class LoggingEventSource
{
/// <summary>
/// This is public from an EventSource consumer point of view, but since these definitions
Expand Down
4 changes: 2 additions & 2 deletions src/tye/InitHost.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.IO;
using Microsoft.Tye.ConfigModel;
using Microsoft.Tye.Serialization;
using Microsoft.Tye.Serialization;

namespace Microsoft.Tye
{
public class InitHost
public static class InitHost
{
public static string CreateTyeFile(FileInfo? path, bool force)
{
Expand Down