mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
fix javadoc link completion in the middle of the comment
This commit is contained in:
+2
-2
@@ -610,10 +610,10 @@ class Foo {
|
||||
}
|
||||
|
||||
public void "test insert link to method"() {
|
||||
myFixture.configureByText 'a.java', "/** #fo<caret> */ interface Foo { void foo(int a); }}"
|
||||
myFixture.configureByText 'a.java', "/** a. #fo<caret> */ interface Foo { void foo(int a); }}"
|
||||
myFixture.completeBasic()
|
||||
myFixture.type('\n')
|
||||
myFixture.checkResult "/** {@link #foo(int)}<caret> */ interface Foo { void foo(int a); }}"
|
||||
myFixture.checkResult "/** a. {@link #foo(int)}<caret> */ interface Foo { void foo(int a); }}"
|
||||
}
|
||||
|
||||
public void "test wrap null into code tag"() {
|
||||
|
||||
Reference in New Issue
Block a user