Skip to content

Commit

Permalink
[Go] Run goimports
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanf committed Nov 3, 2023
1 parent fd24e98 commit a6bef8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion sbe-tool/src/main/golang/json/jsonprinter.go
Expand Up @@ -2,8 +2,9 @@ package json

import (
"fmt"
"github.com/real-logic/simple-binary-encoding/otf"
"strings"

"github.com/real-logic/simple-binary-encoding/otf"
)

// JsonPrinter pretty prints JSON based upon the given Ir.
Expand Down
3 changes: 2 additions & 1 deletion sbe-tool/src/main/golang/json/jsontokenlistener.go
Expand Up @@ -2,9 +2,10 @@ package json

import (
"encoding/hex"
"github.com/real-logic/simple-binary-encoding/otf"
"strconv"
"strings"

"github.com/real-logic/simple-binary-encoding/otf"
)

// JsonTokenListener dynamically decodes to convert them to JSON for output.
Expand Down
3 changes: 2 additions & 1 deletion sbe-tool/src/main/golang/otf/irdecoder.go
@@ -1,10 +1,11 @@
package otf

import (
ir "github.com/real-logic/simple-binary-encoding/uk_co_real_logic_sbe_ir_generated"
"os"
"sort"
"strings"

ir "github.com/real-logic/simple-binary-encoding/uk_co_real_logic_sbe_ir_generated"
)

type IrDecoder struct {
Expand Down

0 comments on commit a6bef8e

Please sign in to comment.