mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Warnings fixed
GitOrigin-RevId: 881782d29f1c951e43fdf9bc513703cc8065c23e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
cc64091aee
commit
debc7aa1c5
@@ -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")
|
@SuppressWarnings("UnnecessaryFullyQualifiedName")
|
||||||
public static Class<?>[] getClassesFromDependencies() {
|
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.
|
// 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
|
// Because of that we have to first discover deps and then resolve corresponding artifacts
|
||||||
try {
|
try {
|
||||||
final List<ArtifactRequest> requests = new ArrayList<>();;
|
final List<ArtifactRequest> requests = new ArrayList<>();
|
||||||
final Set<VersionConstraint> constraints;
|
final Set<VersionConstraint> constraints;
|
||||||
if (kind == ArtifactKind.ANNOTATIONS) {
|
if (kind == ArtifactKind.ANNOTATIONS) {
|
||||||
constraints = relaxForAnnotations(originalConstraints);
|
constraints = relaxForAnnotations(originalConstraints);
|
||||||
|
|||||||
@@ -8,5 +8,5 @@ import org.jetbrains.plugins.groovy.lang.psi.api.statements.expressions.GrExpres
|
|||||||
* @author ilyas
|
* @author ilyas
|
||||||
*/
|
*/
|
||||||
public interface GrLiteral extends GrExpression, GrLiteralContainer, PsiExternalReferenceHost {
|
public interface GrLiteral extends GrExpression, GrLiteralContainer, PsiExternalReferenceHost {
|
||||||
public boolean isString();
|
boolean isString();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user