Skip to content

Conversation

@federicorispo
Copy link
Contributor

  • All classes are now free of unused imports and unused local variables.
  • In SchemaGeneratorHelper: replaced the use of the bitwise operator with the || operator.

All classes are now free of unused imports and unused local variables.
In SchemaGeneratorHelper: replaced the use of the bitwise operator with the || operator.
if (!buildCtx.directiveWiringRequired) {
boolean requiresWiring = SchemaGeneratorDirectiveHelper.schemaDirectiveWiringIsRequired(directiveContainer, buildCtx.getTypeRegistry(), buildCtx.getWiring());
buildCtx.directiveWiringRequired = buildCtx.directiveWiringRequired | requiresWiring;
buildCtx.directiveWiringRequired = buildCtx.directiveWiringRequired || requiresWiring;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a typo

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

indeed

@bbakerman bbakerman merged commit b424ab8 into graphql-java:master Nov 30, 2022
@federicorispo federicorispo deleted the chore/remove-unused-imports branch November 30, 2022 13:26
@bbakerman bbakerman added the not release related changes which are not released (for example unit tests or docs) label Dec 2, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

not release related changes which are not released (for example unit tests or docs)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants