Merge branch 'amakeev/gradle'

# Conflicts:
#	community/plugins/gradle/java/src/service/project/wizard/GradleModuleBuilder.java

GitOrigin-RevId: 7677c496440e29d49839174420972762c8ecc089
This commit is contained in:
Anton Makeev
2019-05-17 17:02:22 +02:00
committed by intellij-monorepo-bot
parent 939209cf81
commit a85dd1eadc
1021 changed files with 29238 additions and 4360 deletions

View File

@@ -77,7 +77,7 @@ abstract class AbstractCollection<E> implements Collection<E> {
public boolean add(E e) {
return true;
}
public boolean addAll(Collection<? extends E> <warning descr="Parameter 'c' is never used">c</warning>) {
public boolean addAll(Collection<? extends E> c) {
boolean modified = false;
return modified;
}