Remove leftover comment. Fix reamde to no longer say this is experimental. The API is not going to change.
diff --git a/README.md b/README.md index 21205ea..9d92c11 100644 --- a/README.md +++ b/README.md
@@ -1,7 +1,3 @@ -**This package is currently in development and the API may not be stable.** - -The API will become stable with v1. - # uuid  The uuid package generates and inspects UUIDs based on [RFC 4122](http://tools.ietf.org/html/rfc4122)
diff --git a/marshal.go b/marshal.go index 84bbc58..7f9e0c6 100644 --- a/marshal.go +++ b/marshal.go
@@ -15,8 +15,6 @@ // UnmarshalText implements encoding.TextUnmarshaler. func (uuid *UUID) UnmarshalText(data []byte) error { - // See comment in ParseBytes why we do this. - // id, err := ParseBytes(data) id, err := ParseBytes(data) if err == nil { *uuid = id
diff --git a/node.go b/node.go index 384f07d..3e4e90d 100644 --- a/node.go +++ b/node.go
@@ -37,7 +37,6 @@ } func setNodeInterface(name string) bool { - iname, addr := getHardwareInterface(name) // null implementation for js if iname != "" && addr != nil { ifname = iname