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

Commit

Permalink
make a few classes static
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored and rynowak committed Mar 31, 2020
1 parent 5ee3faa commit 502056b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit 502056b

Please sign in to comment.