We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78017a9 commit cc80d64Copy full SHA for cc80d64
lib/google/apis/generator/annotator.rb
@@ -288,12 +288,12 @@ def resolve_variants
288
def check_duplicate_method(m)
289
if @all_methods.include?(m.generated_name)
290
logger.error do
291
- sprintf('Duplicate method %s generated, path %s',
292
- m.generated_name, @names.key)
+ sprintf('Duplicate method %s generated, conflicting paths %s and %s',
+ m.generated_name, @names.key, @all_methods[m.generated_name])
293
end
294
fail 'Duplicate name generated'
295
296
- @all_methods[m.generated_name] = m
+ @all_methods[m.generated_name] = @names.key
297
298
299
0 commit comments