IDEA-98656 Java doc not generated when an other Java doc has been commented after.

This commit is contained in:
peter
2013-09-18 17:28:05 +04:00
parent 1554b753f3
commit 077e89f136
6 changed files with 38 additions and 0 deletions
@@ -0,0 +1,15 @@
class Test {
/**
* <caret>
*/
void test() {
}
// /**
// *
// * @param arg
// */
// public void secondMethod(int arg) {
// }
}
@@ -0,0 +1,3 @@
/**
* <caret>Foo//bar */
class Example{}
@@ -0,0 +1,13 @@
class Test {
/**<caret>
void test() {
}
// /**
// *
// * @param arg
// */
// public void secondMethod(int arg) {
// }
}
@@ -0,0 +1,2 @@
/** <caret>Foo//bar */
class Example{}