Rename triple entities were relevant

This commit is contained in:
kortschak 2014-08-27 21:27:01 +09:30
parent ddf8849e60
commit 443a091b72
62 changed files with 664 additions and 664 deletions

View file

@ -26,7 +26,7 @@ import (
)
type worker struct {
ts graph.TripleStore
qs graph.QuadStore
env *otto.Otto
sync.Mutex
@ -39,10 +39,10 @@ type worker struct {
kill <-chan struct{}
}
func newWorker(ts graph.TripleStore) *worker {
func newWorker(qs graph.QuadStore) *worker {
env := otto.New()
wk := &worker{
ts: ts,
qs: qs,
env: env,
limit: -1,
}