瀏覽代碼

fix lint warning

Darien Raymond 8 年之前
父節點
當前提交
026f7e3cc2
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      v2ray.go

+ 2 - 3
v2ray.go

@@ -109,14 +109,13 @@ func newSimpleServer(config *Config) (*simpleServer, error) {
 		common.Must(space.AddApplication(d))
 	}
 
-	disp := dispatcher.FromSpace(space)
-	if disp == nil {
+	if disp := dispatcher.FromSpace(space); disp == nil {
 		d, err := app.CreateAppFromConfig(ctx, new(dispatcher.Config))
 		if err != nil {
 			return nil, err
 		}
 		common.Must(space.AddApplication(d))
-		disp = d.(dispatcher.Interface)
+		// disp = d.(dispatcher.Interface)
 	}
 
 	for _, inbound := range config.Inbound {