From d0443ab13c560a8ecc94bd2bc88f303c2ccf8747 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Sat, 2 Mar 2013 21:28:37 +0200 Subject: [PATCH] Remove repeated tag warning from @since. This case is now covered with the #repeatable field and gets generated for the @since tag automatically. --- lib/jsduck/tag/since.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/jsduck/tag/since.rb b/lib/jsduck/tag/since.rb index 332e5096..31ca5178 100644 --- a/lib/jsduck/tag/since.rb +++ b/lib/jsduck/tag/since.rb @@ -17,10 +17,6 @@ module JsDuck::Tag end def process_doc(h, tags, pos) - if tags.length > 1 - JsDuck::Logger.warn(nil, "Only one @since tag allowed per class/member.") - end - h[:since] = tags[0][:version] end -- GitLab