Commit 3aecf67a authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Remove needless #process_doc from @protected & @chainable.

Both get inherited from BooleanTag.
parent ceefa98f
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -7,9 +7,5 @@ module JsDuck::Builtins
      @signature = {:long => "chainable", :short => ">"} # show small right-arrow
      super
    end
    # When the tag is found, its value will always be true.
    def process_doc(docs)
      true
    end
  end
end
+0 −4
Original line number Diff line number Diff line
@@ -7,9 +7,5 @@ module JsDuck::Builtins
      @signature = {:long => "protected", :short => "PRO"}
      super
    end
    # When the tag is found, its value will always be true.
    def process_doc(docs)
      true
    end
  end
end