rewrite icon indicating copy to clipboard operation
rewrite copied to clipboard

Insert missing parameters to Javadoc

Open yeikel opened this issue 1 year ago • 0 comments

   /**
     * A method that does something.
     *
     * @param param1 A description of the parameter
     */
    private void methodThatDoesSomething(final long param1, int param2) {
       
    }

I'd like to have a recipe to identify when this happens and potentially add the parameter that needs to be documented to the Javadocs

   /**
     * A method that does something.
     *
     * @param param1 A description of the parameter
     * @param param2 <TODO>

     */
    private void methodThatDoesSomething(final long param1, int param2) {
       
    }

yeikel avatar Sep 21 '22 02:09 yeikel