Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-unixfs
Commits
9e75a2ec
Commit
9e75a2ec
authored
Oct 16, 2018
by
Overbool
Committed by
Lucas Molas
Oct 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(hamt): modify isValueNode
parent
7262fe17
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
hamt/hamt.go
hamt/hamt.go
+1
-4
No files found.
hamt/hamt.go
View file @
9e75a2ec
...
...
@@ -40,10 +40,7 @@ const (
)
func
(
ds
*
Shard
)
isValueNode
()
bool
{
if
ds
.
key
!=
""
&&
ds
.
val
!=
nil
{
return
true
}
return
false
return
ds
.
key
!=
""
&&
ds
.
val
!=
nil
}
// A Shard represents the HAMT. It should be initialized with NewShard().
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment