Delete duplicative code.

This commit is contained in:
jregan
2018-07-24 20:42:43 -07:00
parent 77e18724db
commit 25d3ad7522
6 changed files with 20 additions and 223 deletions

View File

@@ -34,6 +34,8 @@ type kvPair struct {
value string
}
var utf8bom = []byte{0xEF, 0xBB, 0xBF}
// keyValuesFromLines parses given content in to a list of key-value pairs.
func keyValuesFromLines(content []byte) ([]kvPair, error) {
var kvs []kvPair