mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Do not treat type parameter is @param section as tag - do not insert closing tag (IDEA-70898)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Q {
|
||||
|
||||
/**
|
||||
* @param <T<caret>
|
||||
*/
|
||||
public <T> T get(T a) {
|
||||
}
|
||||
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Q {
|
||||
|
||||
/**
|
||||
* @param <T>
|
||||
*/
|
||||
public <T> T get(T a) {
|
||||
}
|
||||
|
||||
}
|
||||
+4
@@ -31,6 +31,10 @@ public class JavadocTypedHandlerFunctionalTest extends LightPlatformCodeInsightT
|
||||
public void testCodeTag() {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testTypeParam() {
|
||||
doTest();
|
||||
}
|
||||
|
||||
private void doTest() {
|
||||
String testName = getTestName(true);
|
||||
|
||||
Reference in New Issue
Block a user