Skip to content

Commit

Permalink
Remove formatting from cache file. Should save on some size.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Dec 12, 2023
1 parent 0bbd925 commit 949c3a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKVM.Maven.Sdk.Tasks/MavenReferenceItemResolve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void TryWriteCacheFile(MavenResolveCacheFile cacheFile)
{
using var stm = File.Create(CacheFile);
using var wrt = new StreamWriter(stm);
using var jsn = new JsonTextWriter(wrt) { Formatting = Formatting.Indented };
using var jsn = new JsonTextWriter(wrt) { Formatting = Formatting.None };
serializer.Serialize(jsn, cacheFile);
}
}
Expand Down

0 comments on commit 949c3a0

Please sign in to comment.