Author Topic: B6: Javadoc misaligned for Java8 interfaces with default implementations  (Read 2249 times)

Marcel

  • Senior Community Member
  • Posts: 261
  • Hero Points: 26
Javadoc function documentation alignment gets tripped by the J8 default keyword.
Code: [Select]
public interface SomeInterface {
  /**
   * function 1 does this
   *
   * @param fun1Arg
   */
  void function1(int fun1Arg);
          /**
           * function 2 does that, has a default implementation
           *
           * @param fun2Arg
           */
  default void function2(int fun2Arg) {
    // do something here
  }
}


patrick

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1818
  • Hero Points: 151
Re: B6: Javadoc misaligned for Java8 interfaces with default implementations
« Reply #1 on: October 29, 2014, 01:01:12 PM »
I can reproduce that, taking a look at it.