Author Topic: Move Javadoc bloc above method annotations  (Read 1093 times)

Marcel

  • Senior Community Member
  • Posts: 261
  • Hero Points: 26
Move Javadoc bloc above method annotations
« on: July 24, 2020, 09:49:00 PM »
Some time ago I voiced a request to have the Javadoc editor put method comments ABOVE the possible annotations that sit in front of the declaration, e.g.
Code: [Select]
/** Javadoc goes here
*/
@Override
public void run() {
....
}

The editor currently does this
Code: [Select]
@Override
/** Javadoc goes here
*/
public void run() {
....
}

Any chance to have this fixed in this release?

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6866
  • Hero Points: 528
Re: Move Javadoc bloc above method annotations
« Reply #1 on: July 25, 2020, 03:37:16 PM »
Not good for sure. Can't make any promises but this does need to be fixed.

Dennis

  • Senior Community Member
  • Posts: 3961
  • Hero Points: 517
Re: Move Javadoc bloc above method annotations
« Reply #2 on: July 27, 2020, 09:31:34 PM »
Will be fixed for the next beta.