IDEA-210281 Cleanup Gradle settings: separate Runner configurable removed

GitOrigin-RevId: adbc39121fe91beb633e125b4cf39bfe0a422e4b
This commit is contained in:
Anton Makeev
2019-05-17 19:02:16 +03:00
committed by intellij-monorepo-bot
parent 7eb07b6f15
commit b54aaf7e4e
4721 changed files with 23271 additions and 123684 deletions
@@ -1,15 +0,0 @@
interface Either {
public static final class Left<L> {
private final L value;
private Left(L value) {
this.value = value;
}
}
}
class Main {
{
new <error descr="'Left(L)' has private access in 'Either.Left'">Either.Left<></error>("");
}
}