Skip to content

Commit

Permalink
Restore nullable arg. (#1935)
Browse files Browse the repository at this point in the history
Closes #1929.
  • Loading branch information
mikereiche committed Apr 11, 2024
1 parent db81e7a commit d57371e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import com.querydsl.core.annotations.QueryEntities;
import com.querydsl.core.annotations.QuerySupertype;
import com.querydsl.core.annotations.QueryTransient;
import org.springframework.lang.Nullable;

/**
* Annotation processor to create Querydsl query types for QueryDsl annotated classes.
Expand All @@ -52,7 +53,7 @@ public class CouchbaseAnnotationProcessor extends AbstractQuerydslProcessor {
* @see com.querydsl.apt.AbstractQuerydslProcessor#createConfiguration(javax.annotation.processing.RoundEnvironment)
*/
@Override
protected Configuration createConfiguration(/*@Nullable */RoundEnvironment roundEnv) {
protected Configuration createConfiguration(@Nullable RoundEnvironment roundEnv) {

processingEnv.getMessager().printMessage(Diagnostic.Kind.NOTE, "Running override createConfiguration() " + getClass().getSimpleName());

Expand Down

0 comments on commit d57371e

Please sign in to comment.