changed count to just int
This commit is contained in:
parent
b5f0d3688b
commit
ce6e21d4aa
1 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@ type Exporter struct {
|
||||||
qstore graph.QuadStore
|
qstore graph.QuadStore
|
||||||
qi graph.Iterator
|
qi graph.Iterator
|
||||||
err error
|
err error
|
||||||
count int32
|
count int
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewExporter(writer io.Writer, qstore graph.QuadStore) *Exporter {
|
func NewExporter(writer io.Writer, qstore graph.QuadStore) *Exporter {
|
||||||
|
|
@ -25,7 +25,7 @@ func NewExporterForIterator(writer io.Writer, qstore graph.QuadStore, qi graph.I
|
||||||
}
|
}
|
||||||
|
|
||||||
// number of records
|
// number of records
|
||||||
func (exp *Exporter) Count() int32 {
|
func (exp *Exporter) Count() int {
|
||||||
return exp.count
|
return exp.count
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue