IDEA-120784 "Class is public should be declared in a file named <Classname>.java" for inner interface

This commit is contained in:
Alexey Kudravtsev
2014-02-18 12:43:35 +04:00
parent 65642d998f
commit c7b78f76a2
309 changed files with 381 additions and 364 deletions

View File

@@ -1,4 +1,4 @@
public class Test<A,B> {
class Test<A,B> {
public static <P,Q> Test<P,Q> left(P p) { return null; }
public static <P,Q> Test<P,Q> right(Q q) { return null; }
public <C> C either(Function<A, C> leftFn, Function<B, C> rightFn){ return null; }