diff --git a/sbe-tool/src/main/golang/json/jsonprinter.go b/sbe-tool/src/main/golang/json/jsonprinter.go index e451abd37f..d6ec189f7f 100644 --- a/sbe-tool/src/main/golang/json/jsonprinter.go +++ b/sbe-tool/src/main/golang/json/jsonprinter.go @@ -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. diff --git a/sbe-tool/src/main/golang/json/jsontokenlistener.go b/sbe-tool/src/main/golang/json/jsontokenlistener.go index 9d5947d4cc..af7c711f64 100644 --- a/sbe-tool/src/main/golang/json/jsontokenlistener.go +++ b/sbe-tool/src/main/golang/json/jsontokenlistener.go @@ -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. diff --git a/sbe-tool/src/main/golang/otf/irdecoder.go b/sbe-tool/src/main/golang/otf/irdecoder.go index 58a052f999..d90876e637 100644 --- a/sbe-tool/src/main/golang/otf/irdecoder.go +++ b/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 {