Skip to content

Commit

Permalink
Made append header public.
Browse files Browse the repository at this point in the history
  • Loading branch information
xivk committed Sep 30, 2024
1 parent f8ad1ef commit 9aac4fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OsmSharp.IO.Binary/BinarySerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static class BinarySerializer
/// <summary>
/// Appends the header byte(s).
/// </summary>
private static void AppendHeader(this Stream stream, OsmGeo osmGeo)
public static void AppendHeader(this Stream stream, OsmGeo osmGeo)
{
// build header containing type and nullable flags.
byte header = 1; // a node.
Expand Down
2 changes: 1 addition & 1 deletion src/OsmSharp.IO.Binary/OsmSharp.IO.Binary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>OsmSharp.IO.Binary</AssemblyName>
<PackageId>OsmSharp.IO.Binary</PackageId>
<PackageVersion>0.3.0-pre002</PackageVersion>
<PackageVersion>0.3.1-pre001</PackageVersion>
<Title>OsmSharp.IO.Binary</Title>
<Authors>Ben Abelshausen</Authors>
<Description>A binary IO package for OsmSharp.</Description>
Expand Down

0 comments on commit 9aac4fb

Please sign in to comment.