Skip to content

Commit

Permalink
[WIP] fake changes after clean/rebuild all
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Brossel <PoGo1104Contributes@gmail.com>
  • Loading branch information
pbrossel committed May 4, 2024
1 parent cbb2edc commit cfcfd53
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ public List<? extends Problem> getProblems(final Element element) {
return this.getProblemSupport().getProblems(element);
}

public void validateLater(final Procedure0 arg0) {
this.getProblemSupport().validateLater(arg0);
public void validateLater(final Procedure0 validationCallback) {
this.getProblemSupport().validateLater(validationCallback);
}

public MutableAnnotationTypeDeclaration findAnnotationType(final String qualifiedName) {
Expand Down Expand Up @@ -226,32 +226,32 @@ public AnnotationReference newAnnotationReference(final AnnotationReference anno
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference);
}

public AnnotationReference newAnnotationReference(final AnnotationReference arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final AnnotationReference annotationReference, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference, initializer);
}

public AnnotationReference newAnnotationReference(final Class<?> annotationClass) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass);
}

public AnnotationReference newAnnotationReference(final Class<?> arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Class<?> annotationClass, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass, initializer);
}

public AnnotationReference newAnnotationReference(final String annotationTypeName) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName);
}

public AnnotationReference newAnnotationReference(final String arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final String annotationTypeName, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName, initializer);
}

public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration);
}

public AnnotationReference newAnnotationReference(final Type arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration, initializer);
}

public boolean exists(final Path path) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ public List<? extends Problem> getProblems(final Element element) {
return this.getProblemSupport().getProblems(element);
}

public void validateLater(final Procedure0 arg0) {
this.getProblemSupport().validateLater(arg0);
public void validateLater(final Procedure0 validationCallback) {
this.getProblemSupport().validateLater(validationCallback);
}

public MutableAnnotationTypeDeclaration findAnnotationType(final String qualifiedName) {
Expand Down Expand Up @@ -219,32 +219,32 @@ public AnnotationReference newAnnotationReference(final AnnotationReference anno
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference);
}

public AnnotationReference newAnnotationReference(final AnnotationReference arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final AnnotationReference annotationReference, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationReference, initializer);
}

public AnnotationReference newAnnotationReference(final Class<?> annotationClass) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass);
}

public AnnotationReference newAnnotationReference(final Class<?> arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Class<?> annotationClass, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationClass, initializer);
}

public AnnotationReference newAnnotationReference(final String annotationTypeName) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName);
}

public AnnotationReference newAnnotationReference(final String arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final String annotationTypeName, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeName, initializer);
}

public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration);
}

public AnnotationReference newAnnotationReference(final Type arg0, final Procedure1<AnnotationReferenceBuildContext> arg1) {
return this.getAnnotationReferenceProvider().newAnnotationReference(arg0, arg1);
public AnnotationReference newAnnotationReference(final Type annotationTypeDelcaration, final Procedure1<AnnotationReferenceBuildContext> initializer) {
return this.getAnnotationReferenceProvider().newAnnotationReference(annotationTypeDelcaration, initializer);
}

public boolean exists(final Path path) {
Expand Down

0 comments on commit cfcfd53

Please sign in to comment.