Skip to content

Commit

Permalink
rm extra param
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhenghui Wang committed Jul 26, 2017
1 parent a0c9cf0 commit b9e1312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/repository/idl_registry.go
Expand Up @@ -85,7 +85,7 @@ func (reg *idlRegistry) ThriftMeta(path string, needFileContent bool) (*ThriftMe
defer reg.lock.RUnlock()
meta, ok := reg.metaMap[path]
if !ok {
return nil, errors.Errorf("failed to find file %q", path, reg.metaMap)
return nil, errors.Errorf("failed to find file %q", path)
}
if !needFileContent {
return meta, nil
Expand Down

0 comments on commit b9e1312

Please sign in to comment.