1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-03 07:45:29 -05:00

fix lint warnings

This commit is contained in:
Darien Raymond
2017-08-29 14:50:53 +02:00
parent 52ad41cda3
commit fbbed156db
2 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ func newSimpleServer(config *Config) (*simpleServer, error) {
if err != nil {
return nil, newError("failed apply default log settings").Base(err)
}
space.AddApplication(l)
common.Must(space.AddApplication(l))
}
outboundHandlerManager := proxyman.OutboundHandlerManagerFromSpace(space)
@@ -115,7 +115,7 @@ func newSimpleServer(config *Config) (*simpleServer, error) {
if err != nil {
return nil, err
}
space.AddApplication(d)
common.Must(space.AddApplication(d))
disp = d.(dispatcher.Interface)
}