Skip to content

Commit

Permalink
Fix BOM
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Nov 8, 2024
1 parent 229d810 commit 305a23e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Elastic.Ingest.Apm/ApmChannelStatics.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to Elasticsearch B.V under one or more agreements.
// Licensed to Elasticsearch B.V under one or more agreements.
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information

Expand All @@ -11,7 +11,7 @@ namespace Elastic.Ingest.Apm;

internal static class ApmChannelStatics
{
public static readonly byte[] LineFeed = { (byte)'\n' };
public static readonly byte[] LineFeed = [(byte)'\n'];

public static readonly RequestConfiguration RequestConfig = new() { ContentType = "application/x-ndjson" };

Expand Down

0 comments on commit 305a23e

Please sign in to comment.