[java] fixes javadoc inspection false positive for split @see tags (IDEA-158662)

This commit is contained in:
Roman Shevchenko
2016-07-18 20:55:08 +02:00
parent 88a6b5defe
commit c4e8bf5219
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
class Test {
/**
* @see
* <a href="http://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#CHDCDBGG">
* Oracle Docs</a>
*/
void m() { }
}