瀏覽代碼

format code

Darien Raymond 9 年之前
父節點
當前提交
d75eeed25d
共有 2 個文件被更改,包括 16 次插入16 次删除
  1. 7 7
      common/serial/bytes.go
  2. 9 9
      proxy/vmess/id_test.go

+ 7 - 7
common/serial/bytes.go

@@ -29,10 +29,10 @@ func (this BytesLiteral) String() string {
 
 // All returns true if all bytes in the ByteLiteral are the same as given value.
 func (this BytesLiteral) All(v byte) bool {
-  for _, b := range this {
-    if b != v {
-      return false
-    }
-  }
-  return true
-}
+	for _, b := range this {
+		if b != v {
+			return false
+		}
+	}
+	return true
+}

+ 9 - 9
proxy/vmess/id_test.go

@@ -1,18 +1,18 @@
 package vmess_test
 
 import (
-  "testing"
+	"testing"
 
-  "github.com/v2ray/v2ray-core/common/uuid"
-  "github.com/v2ray/v2ray-core/common/serial"
-  . "github.com/v2ray/v2ray-core/proxy/vmess"
-  v2testing "github.com/v2ray/v2ray-core/testing"
-  "github.com/v2ray/v2ray-core/testing/assert"
+	"github.com/v2ray/v2ray-core/common/serial"
+	"github.com/v2ray/v2ray-core/common/uuid"
+	. "github.com/v2ray/v2ray-core/proxy/vmess"
+	v2testing "github.com/v2ray/v2ray-core/testing"
+	"github.com/v2ray/v2ray-core/testing/assert"
 )
 
 func TestCmdKey(t *testing.T) {
-  v2testing.Current(t)
+	v2testing.Current(t)
 
-  id := NewID(uuid.New())
-  assert.Bool(serial.BytesLiteral(id.CmdKey()).All(0)).IsFalse()
+	id := NewID(uuid.New())
+	assert.Bool(serial.BytesLiteral(id.CmdKey()).All(0)).IsFalse()
 }