mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 20:11:25 +07:00
IDEA-120784 "Class is public should be declared in a file named <Classname>.java" for inner interface
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/**
|
||||
* Do smth @linkplain #link}.
|
||||
*/
|
||||
public class Test {
|
||||
class Test {
|
||||
private void link(){}
|
||||
}
|
||||
@@ -2,6 +2,6 @@
|
||||
* Do smth
|
||||
* @author me.
|
||||
*/
|
||||
public class Test {
|
||||
class Test {
|
||||
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* {<warning>@linked</warning>}
|
||||
*/
|
||||
public class Foo {
|
||||
class Foo {
|
||||
/**
|
||||
* @param i some param {<warning>@vaaalue</warning> #field}
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* <warning>@foo</warning>
|
||||
*/
|
||||
public class Foo {
|
||||
class Foo {
|
||||
/**
|
||||
* <warning>@foo</warning>
|
||||
*/
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
public class Test {
|
||||
class Test {
|
||||
/**
|
||||
* @see Test#test(String, int...)
|
||||
* @see Test#<error descr="Cannot resolve symbol 'test(String, long...)'">test</error>(String, long...)
|
||||
|
||||
Reference in New Issue
Block a user