shithub: furgit

Download patch

ref: 89e2abdc02e39d81aa7905f4d470dfeaddd090a7
parent: b704f756e7f40bb83f2d4dd97d6f740f13a02ab1
author: Runxi Yu <me@runxiyu.org>
date: Fri Jan 30 05:17:22 EST 2026

difftrees: Remove extra blank lines in TreeDiffEntry struct

--- a/difftrees.go
+++ b/difftrees.go
@@ -19,13 +19,10 @@
 	// Path is the full slash-separated path relative to the root
 	// of the repository.
 	Path []byte
-
 	// Kind indicates the type of difference.
 	Kind TreeDiffEntryKind
-
 	// Old is the old tree entry (nil iff added).
 	Old *TreeEntry
-
 	// New is the new tree entry (nil iff deleted).
 	New *TreeEntry
 }
--