You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2019/08/28 06:16:36 UTC

[dubbo-go] branch develop updated: Mod: go fmt

This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git


The following commit(s) were added to refs/heads/develop by this push:
     new 593703d  Mod: go fmt
593703d is described below

commit 593703d2242a926c728358c54d9e5830dc26aaca
Author: AlexStocks <al...@foxmail.com>
AuthorDate: Wed Aug 28 14:16:21 2019 +0800

    Mod: go fmt
---
 config/reference_config_test.go                          | 4 +---
 examples/general/dubbo/go-server/app/user_provider.go    | 2 +-
 examples/general/dubbo/go-server/app/user_provider1.go   | 2 +-
 examples/general/dubbo/go-server/app/user_provider2.go   | 2 +-
 protocol/protocolwrapper/protocol_filter_wrapper_test.go | 4 ++--
 5 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/config/reference_config_test.go b/config/reference_config_test.go
index 5d00f6d..d36fa04 100644
--- a/config/reference_config_test.go
+++ b/config/reference_config_test.go
@@ -20,8 +20,6 @@ package config
 import (
 	"sync"
 	"testing"
-
-
 )
 
 import (
@@ -30,8 +28,8 @@ import (
 
 import (
 	"github.com/apache/dubbo-go/cluster/cluster_impl"
-	"github.com/apache/dubbo-go/common/constant"
 	"github.com/apache/dubbo-go/common"
+	"github.com/apache/dubbo-go/common/constant"
 	"github.com/apache/dubbo-go/common/extension"
 	"github.com/apache/dubbo-go/protocol"
 )
diff --git a/examples/general/dubbo/go-server/app/user_provider.go b/examples/general/dubbo/go-server/app/user_provider.go
index aeb5ad5..87f0d85 100644
--- a/examples/general/dubbo/go-server/app/user_provider.go
+++ b/examples/general/dubbo/go-server/app/user_provider.go
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
- 
+
 package main
 
 import (
diff --git a/examples/general/dubbo/go-server/app/user_provider1.go b/examples/general/dubbo/go-server/app/user_provider1.go
index f1a3abf..afc2a1d 100644
--- a/examples/general/dubbo/go-server/app/user_provider1.go
+++ b/examples/general/dubbo/go-server/app/user_provider1.go
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
- 
+
 package main
 
 import (
diff --git a/examples/general/dubbo/go-server/app/user_provider2.go b/examples/general/dubbo/go-server/app/user_provider2.go
index b4a6937..cc19e0b 100644
--- a/examples/general/dubbo/go-server/app/user_provider2.go
+++ b/examples/general/dubbo/go-server/app/user_provider2.go
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
- 
+
 package main
 
 import (
diff --git a/protocol/protocolwrapper/protocol_filter_wrapper_test.go b/protocol/protocolwrapper/protocol_filter_wrapper_test.go
index 2e1a669..98bd206 100644
--- a/protocol/protocolwrapper/protocol_filter_wrapper_test.go
+++ b/protocol/protocolwrapper/protocol_filter_wrapper_test.go
@@ -27,11 +27,11 @@ import (
 )
 
 import (
-	"github.com/apache/dubbo-go/common/logger"
-	"github.com/apache/dubbo-go/filter"
 	"github.com/apache/dubbo-go/common"
 	"github.com/apache/dubbo-go/common/constant"
 	"github.com/apache/dubbo-go/common/extension"
+	"github.com/apache/dubbo-go/common/logger"
+	"github.com/apache/dubbo-go/filter"
 	//"github.com/apache/dubbo-go/filter/impl"
 	"github.com/apache/dubbo-go/protocol"
 )