1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 15:36:41 -05:00

remove unnecessary error msg

This commit is contained in:
Darien Raymond 2017-06-23 00:11:46 +02:00
parent c13b212fc6
commit eff193ab45
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -23,7 +23,7 @@ func RegisterConfigLoader(format ConfigFormat, loader ConfigLoader) error {
func LoadConfig(format ConfigFormat, input io.Reader) (*Config, error) { func LoadConfig(format ConfigFormat, input io.Reader) (*Config, error) {
loader, found := configLoaderCache[format] loader, found := configLoaderCache[format]
if !found { if !found {
return nil, newError("Core: ", ConfigFormat_name[int32(format)], " is not loadable.") return nil, newError(ConfigFormat_name[int32(format)], " is not loadable.")
} }
return loader(input) return loader(input)
} }