Warnings fixed

GitOrigin-RevId: 881782d29f1c951e43fdf9bc513703cc8065c23e
This commit is contained in:
Tagir Valeev
2022-07-04 08:15:43 +02:00
committed by intellij-monorepo-bot
parent cc64091aee
commit debc7aa1c5
2 changed files with 3 additions and 3 deletions

View File

@@ -211,7 +211,7 @@ public final class ArtifactRepositoryManager {
}
/**
* Returns list of classes corresponding to classpath entries for this this module.
* Returns list of classes corresponding to classpath entries for this module.
*/
@SuppressWarnings("UnnecessaryFullyQualifiedName")
public static Class<?>[] getClassesFromDependencies() {
@@ -284,7 +284,7 @@ public final class ArtifactRepositoryManager {
// RepositorySystem.resolveDependencies() ignores classifiers, so we need to set classifiers explicitly for discovered dependencies.
// Because of that we have to first discover deps and then resolve corresponding artifacts
try {
final List<ArtifactRequest> requests = new ArrayList<>();;
final List<ArtifactRequest> requests = new ArrayList<>();
final Set<VersionConstraint> constraints;
if (kind == ArtifactKind.ANNOTATIONS) {
constraints = relaxForAnnotations(originalConstraints);

View File

@@ -8,5 +8,5 @@ import org.jetbrains.plugins.groovy.lang.psi.api.statements.expressions.GrExpres
* @author ilyas
*/
public interface GrLiteral extends GrExpression, GrLiteralContainer, PsiExternalReferenceHost {
public boolean isString();
boolean isString();
}