Clean up residual changes

Remove done TODOs and unnecessary helpers.
This commit is contained in:
kortschak 2014-08-05 23:27:13 +09:30
parent 6acfdcc5d6
commit 2c6f0f7345
8 changed files with 129 additions and 136 deletions

View file

@ -30,14 +30,6 @@ import (
"github.com/google/cayley/quad"
)
// Parse returns a valid quad.Quad or a non-nil error. Parse does
// handle comments except where the comment placement does not prevent
// a complete valid quad.Quad from being defined.
func Parse(str string) (quad.Quad, error) {
q, err := parse([]rune(str))
return q, err
}
// Decoder implements N-Quad document parsing according to the RDF
// 1.1 N-Quads specification.
type Decoder struct {