From d460ce9f8df2e77fb1ba55ca87fafed96c607494 Mon Sep 17 00:00:00 2001 From: Paul Borman Date: Mon, 27 Aug 2018 15:42:32 -0500 Subject: [PATCH] Remove leftover comment. Fix reamde to no longer say this is experimental. The API is not going to change. --- README.md | 4 ---- marshal.go | 2 -- node.go | 1 - 3 files changed, 7 deletions(-) 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 ![build status](https://travis-ci.org/google/uuid.svg?branch=master) 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 @@ func (uuid UUID) MarshalText() ([]byte, error) { // 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 { } func setNodeInterface(name string) bool { - iname, addr := getHardwareInterface(name) // null implementation for js if iname != "" && addr != nil { ifname = iname