Book a Demo

Author Topic: Wrong parameter comment in functions dialog  (Read 2128 times)

placebo76

  • EA Novice
  • *
  • Posts: 9
  • Karma: +0/-0
    • View Profile
Wrong parameter comment in functions dialog
« on: October 02, 2012, 07:31:51 pm »
When i create a comment for a function like

/**
* Testcomment
*
* @param string test
*/

the parameter line (@param...) will be added to my comment in the operations dialog. After regenerating the sources the complete comment will be generated + the parameter itself. So i have a generated code like

/**
* Testcomment
*
* @param string test
* @param string test
*/