Browse Source

format code

V2Ray 10 năm trước cách đây
mục cha
commit
8408b7735c
1 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 5 5
      point.go

+ 5 - 5
point.go

@@ -92,11 +92,11 @@ func (vp *Point) Start() error {
 
 	return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
 		err := vp.ich.Listen(vp.port)
-    if err == nil {
-      log.Warning("Point server started on port %d", vp.port)
-      return nil
-    }
-    return err
+		if err == nil {
+			log.Warning("Point server started on port %d", vp.port)
+			return nil
+		}
+		return err
 	})
 }