From c47cd13c0b25e1065f6f9ca9400aec3d398d9001 Mon Sep 17 00:00:00 2001 From: Lucas Molas Date: Mon, 9 Jul 2018 12:02:47 -0300 Subject: [PATCH] unixfs: remove unused `ShardSplitThreshold` variable License: MIT Signed-off-by: Lucas Molas --- unixfs/io/directory.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/unixfs/io/directory.go b/unixfs/io/directory.go index 31b2846ac78..dd13e6604f8 100644 --- a/unixfs/io/directory.go +++ b/unixfs/io/directory.go @@ -13,11 +13,6 @@ import ( cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid" ) -// ShardSplitThreshold specifies how large of an unsharded directory -// the Directory code will generate. Adding entries over this value will -// result in the node being restructured into a sharded object. -var ShardSplitThreshold = 1000 - // UseHAMTSharding is a global flag that signifies whether or not to use the // HAMT sharding scheme for directory creation var UseHAMTSharding = false