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
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
@@ -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.
3 changes: 2 additions & 1 deletion sbe-tool/src/main/golang/json/jsontokenlistener.go
Original file line number Diff line number Diff line change
@@ -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.
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 {

0 comments on commit a6bef8e

Please sign in to comment.