mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
javadoc reference errors: do not highlight too much - leave valid parts of the reference untouched ( IDEA-36904 )
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
/**
|
||||
* @param ppp see {@link <error>#Test</error>}
|
||||
* @param ppp see {@link #<error>Test</error>}
|
||||
*/
|
||||
public void i(int ppp) {}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ class Test {
|
||||
|
||||
public void i(int ppp) {}
|
||||
/**
|
||||
* {@link <error>#foo(int)</error>}
|
||||
* {@link #<error>foo(int)</error>}
|
||||
* {@link #foo()}
|
||||
* {@link #i(int)}
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
/**
|
||||
* @see <error>A#someField</error>
|
||||
* @see A#<error>someField</error>
|
||||
*/
|
||||
public void i() {}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
/**
|
||||
* @see <error>#perform(int)</error>
|
||||
* @see #<error>perform(int)</error>
|
||||
*/
|
||||
public void i() {}
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ public class SeeConstants {
|
||||
public static final String UUU="";
|
||||
|
||||
/**
|
||||
* @see <error>SeeConstants.III</error>
|
||||
* @see SeeConstants.<error>III</error>
|
||||
* @see SeeConstants#UUU
|
||||
* @param args blah-blah
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
/**
|
||||
* Value is {@value <error>#badReference</error>}
|
||||
* Value is {@value #<error>badReference</error>}
|
||||
* @param ppp .
|
||||
*/
|
||||
public void i(int ppp) {}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
public class Test {
|
||||
/**
|
||||
* @see Test#test(String, int...)
|
||||
* @see <error>Test#test(String, long...)</error>
|
||||
* @see Test#<error>test(String, long...)</error>
|
||||
**/
|
||||
void foo() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user