Name reduction

This commit is contained in:
kortschak 2014-08-02 22:58:53 +09:30
parent bf3ac2be9e
commit 2d884f92e9

View file

@ -47,9 +47,9 @@ type Session struct {
emptyEnv *otto.Otto emptyEnv *otto.Otto
} }
func NewSession(inputTripleStore graph.TripleStore, timeoutSec int, persist bool) *Session { func NewSession(ts graph.TripleStore, timeoutSec int, persist bool) *Session {
g := Session{ g := Session{
ts: inputTripleStore, ts: ts,
limit: -1, limit: -1,
timeoutSec: time.Duration(timeoutSec), timeoutSec: time.Duration(timeoutSec),
} }