Do not treat type parameter is @param section as tag - do not insert closing tag (IDEA-70898)

This commit is contained in:
Yaroslav Lepenkin
2015-09-16 16:08:15 +03:00
parent 6430ff2915
commit 6decb9742f
4 changed files with 27 additions and 10 deletions
@@ -0,0 +1,9 @@
class Q {
/**
* @param <T<caret>
*/
public <T> T get(T a) {
}
}
@@ -0,0 +1,9 @@
class Q {
/**
* @param <T>
*/
public <T> T get(T a) {
}
}