go/store/datas: repoformat.

This commit is contained in:
Aaron Son
2022-06-09 14:28:49 -07:00
parent f3c19bce4e
commit 115d218641
2 changed files with 10 additions and 10 deletions

View File

@@ -25,8 +25,8 @@ import (
"container/heap"
"context"
"errors"
"io"
"fmt"
"io"
flatbuffers "github.com/google/flatbuffers/go"
@@ -35,9 +35,9 @@ import (
"github.com/dolthub/dolt/go/store/d"
"github.com/dolthub/dolt/go/store/hash"
"github.com/dolthub/dolt/go/store/nomdl"
"github.com/dolthub/dolt/go/store/types"
"github.com/dolthub/dolt/go/store/prolly/tree"
"github.com/dolthub/dolt/go/store/prolly"
"github.com/dolthub/dolt/go/store/prolly/tree"
"github.com/dolthub/dolt/go/store/types"
"github.com/dolthub/dolt/go/store/val"
)
@@ -810,7 +810,7 @@ func (i *fbParentsClosureIterator) Next(ctx context.Context) bool {
if i.i == 0 {
return false
}
i.i = i.i-1
i.i = i.i - 1
return true
}
@@ -889,7 +889,7 @@ func newParentsClosureIterator(ctx context.Context, c *Commit, vr types.ValueRea
i += 1
}
return &fbParentsClosureIterator{
tuples, len(tuples)-1,
tuples, len(tuples) - 1,
}, nil
}

View File

@@ -23,10 +23,10 @@ package datas
import (
"context"
"fmt"
"testing"
"io"
"errors"
"fmt"
"io"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -36,9 +36,9 @@ import (
"github.com/dolthub/dolt/go/store/d"
"github.com/dolthub/dolt/go/store/hash"
"github.com/dolthub/dolt/go/store/nomdl"
"github.com/dolthub/dolt/go/store/types"
"github.com/dolthub/dolt/go/store/prolly/tree"
"github.com/dolthub/dolt/go/store/prolly"
"github.com/dolthub/dolt/go/store/prolly/tree"
"github.com/dolthub/dolt/go/store/types"
"github.com/dolthub/dolt/go/store/val"
)