1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-18 00:39:54 -04:00

fix lint errors

This commit is contained in:
Darien Raymond
2018-04-04 00:29:30 +02:00
parent 27ccc9d726
commit 9f198d7e3d
10 changed files with 19 additions and 18 deletions

View File

@@ -9,8 +9,5 @@ func (c *Config) Apply() error {
if c == nil {
return nil
}
if err := internet.ApplyGlobalTransportSettings(c.TransportSettings); err != nil {
return err
}
return nil
return internet.ApplyGlobalTransportSettings(c.TransportSettings)
}