IDEA-210281 Cleanup Gradle settings: separate Runner configurable removed

GitOrigin-RevId: adbc39121fe91beb633e125b4cf39bfe0a422e4b
This commit is contained in:
Anton Makeev
2019-05-06 23:01:12 +02:00
committed by intellij-monorepo-bot
parent 7eb07b6f15
commit b54aaf7e4e
4721 changed files with 23274 additions and 123687 deletions

View File

@@ -12,7 +12,7 @@ class MyTest<T> {
public static class Builder<E> {
public Builder<E> add(E element) {
public Builder<E> add(E <warning descr="Parameter 'element' is never used">element</warning>) {
return this;
}

View File

@@ -8,6 +8,6 @@ class Main {
}
public static boolean checkForJdk(String <warning descr="Parameter 'homePath' is never used">homePath</warning>) {return false;}
public static boolean checkForJdk(File homePath) {return false;}
public static boolean checkForJdk(File <warning descr="Parameter 'homePath' is never used">homePath</warning>) {return false;}
}

View File

@@ -12,17 +12,4 @@ interface Test {
static void of(String... lists) { }
}
interface Entry<T> { }
interface ClassA<T> {
static <T> void f(Iterable<T> values) {
}
}
interface ClassB<T> extends ClassA<Entry<T>> {
static <T> void f(Iterable<? extends Entry<? extends T>> values) {}
static void m(Iterable<Entry<String>> x) {
f(x);
}
}