We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ad130 commit f971b00Copy full SHA for f971b00
src/com/magento/idea/magento2plugin/inspections/graphqls/SchemaResolverInspection.java
@@ -48,14 +48,14 @@ public void visitValue(@NotNull final GraphQLValue element) {
48
),
49
ProblemHighlightType.ERROR,
50
new CreateResolverClassQuickFix());
51
- return;
52
- }
53
- if (!GraphQlUtil.isResolver(resolverClass)) {
54
- holder.registerProblem(element,
55
- inspectionBundle.message(
56
- "inspection.graphql.resolver.mustImplement"
57
- ),
58
- ProblemHighlightType.ERROR);
+ } else if (!GraphQlUtil.isResolver(resolverClass)) {
+ holder.registerProblem(
+ element,
+ inspectionBundle.message(
+ "inspection.graphql.resolver.mustImplement"
+ ),
+ ProblemHighlightType.ERROR
+ );
59
}
60
61
};
0 commit comments