Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public interface AuditingConfiguration {

/**
* Returns the bean name of the {@link AuditorAware} instance to be used..
* Returns the bean name of the {@link AuditorAware} instance to be used.
*
* @return
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ default Association<P> getRequiredAssociation() {
Class<?> getComponentType();

/**
* Returns the raw type as it's pulled from from the reflected property.
* Returns the raw type as it's pulled from the reflected property.
*
* @return the raw type of the property.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public EntityPathResolver getEntityPathResolver() {
}

/**
* Creates the {@link QuerydslBindings} to be used using for the given domain type. A {@link QuerydslBinderCustomizer}
* Creates the {@link QuerydslBindings} to be used for the given domain type. A {@link QuerydslBinderCustomizer}
* will be auto-detected.
*
* @param domainType must not be {@literal null}.
Expand All @@ -98,7 +98,7 @@ public QuerydslBindings createBindingsFor(TypeInformation<?> domainType) {
}

/**
* Creates the {@link QuerydslBindings} to be used using for the given domain type and a pre-defined
* Creates the {@link QuerydslBindings} to be used for the given domain type and a pre-defined
* {@link QuerydslBinderCustomizer}.
*
* @param domainType must not be {@literal null}.
Expand All @@ -111,7 +111,7 @@ public QuerydslBindings createBindingsFor(TypeInformation<?> domainType,
}

/**
* Creates the {@link QuerydslBindings} to be used using for the given domain type and a pre-defined
* Creates the {@link QuerydslBindings} to be used for the given domain type and a pre-defined
* {@link QuerydslBinderCustomizer}. If no customizer is given, auto-detection will be applied.
*
* @param domainType must not be {@literal null}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private void skipToEndOfLine() {
* along the way. The opening quote should have already been read. This consumes the closing quote, but does not
* include it in the returned string.
*
* @param quote either ' or ".
* @param quote either {@code '} or {@code "}.
* @return the string up to but not including {@code quote}
* @throws NumberFormatException if any unicode escape sequences are malformed.
* @throws JSONException if processing of json failed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class CustomRepositoryImplementationDetector {
/**
* Creates a new {@link CustomRepositoryImplementationDetector} with the given {@link Environment},
* {@link ResourceLoader} and {@link ImplementationDetectionConfiguration}. The latter will be registered for a
* one-time component scan for implementation candidates that will the be used and filtered in all subsequent calls to
* one-time component scan for implementation candidates that will be used and filtered in all subsequent calls to
* {@link #detectCustomImplementation(ImplementationLookupConfiguration)}.
*
* @param environment must not be {@literal null}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Optional<T> uniqueResult() {
}

/**
* Filters the collection with the predicate if there are still more then one elements in the collection.
* Filters the collection with the predicate if there are still more than one element in the collection.
*
* @param predicate To be used for filtering.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import org.springframework.util.ConcurrentReferenceHashMap;

/**
* This {@link MethodInterceptor} intercepts calls to methods of the custom implementation and delegates the to it if
* This {@link MethodInterceptor} intercepts calls to methods of the custom implementation and delegates to it if
* configured. Furthermore it resolves method calls to finders and triggers execution of them. You can rely on having a
* custom repository implementation instance set if this returns true.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package org.springframework.data.repository.core.support;

/**
* Callback interface that can be used to to customize a {@link RepositoryFactorySupport repository factory}.
* Callback interface that can be used to customize a {@link RepositoryFactorySupport repository factory}.
*
* @author Mark Paluch
* @since 2.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ private void cacheFirstOrPrimary(Optional<ConfigurableListableBeanFactory> beanF
/**
* Returns the repository domain type for which to look up the repository. The input can either be a repository
* managed type directly. Or it can be a sub-type of a repository managed one, in which case we check the domain types
* we have repositories registered for for assignability.
* we have repositories registered for assignability.
*
* @param domainType must not be {@literal null}.
* @return
Expand Down
Loading