Skip to content

Commit

Permalink
[Go] Run goimports
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanf committed Dec 7, 2023
1 parent 61b914e commit c67db61
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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 c67db61

Please sign in to comment.