aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/pkg/dir.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pkg/dir.go')
-rw-r--r--internal/pkg/dir.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/pkg/dir.go b/internal/pkg/dir.go
index d0c3668d..1d98350f 100644
--- a/internal/pkg/dir.go
+++ b/internal/pkg/dir.go
@@ -28,14 +28,6 @@ type FlatEntry struct {
| data []byte |
*/
-// wordSize is the boundary which binary segments are always aligned to.
-const wordSize = 8
-
-// alignSize returns the padded size for aligning sz.
-func alignSize(sz int) int {
- return sz + (wordSize-(sz)%wordSize)%wordSize
-}
-
// Encode encodes the entry for transmission or hashing.
func (ent *FlatEntry) Encode(w io.Writer) (n int, err error) {
pPathSize := alignSize(len(ent.Path))