You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by je...@apache.org on 2018/09/11 04:54:52 UTC

[incubator-dubbo] branch master updated: format code style (#2475)

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

jerrick pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 038e87e  format code style (#2475)
038e87e is described below

commit 038e87e69196613409722fc03e2f9737ea7b190c
Author: Jexy <83...@qq.com>
AuthorDate: Tue Sep 11 12:54:46 2018 +0800

    format code style (#2475)
---
 .../src/main/java/org/apache/dubbo/qos/command/CommandContext.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/CommandContext.java b/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/CommandContext.java
index 744a8c6..0dae562 100644
--- a/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/CommandContext.java
+++ b/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/CommandContext.java
@@ -19,6 +19,7 @@ package org.apache.dubbo.qos.command;
 import io.netty.channel.Channel;
 
 public class CommandContext {
+
     private String commandName;
     private String[] args;
     private Channel remote;
@@ -29,7 +30,7 @@ public class CommandContext {
         this.commandName = commandName;
     }
 
-    public CommandContext(String commandName, String[] args,boolean isHttp) {
+    public CommandContext(String commandName, String[] args, boolean isHttp) {
         this.commandName = commandName;
         this.args = args;
         this.isHttp = isHttp;