Skip to content
Closed
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
2 changes: 1 addition & 1 deletion CI.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ image:https://jenkins.spring.io/buildStatus/icon?job=spring-data-commons%2F1.13.
Since this pipeline is purely Docker-based, it's easy to:

* Debug what went wrong on your local machine.
* Test out a a tweak to your `test.sh` script before sending it out.
* Test out a tweak to your `test.sh` script before sending it out.
* Experiment against a new image before submitting your pull request.

All of these use cases are great reasons to essentially run what the CI server does on your local machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* A {@link PersistentPropertyAccessor} that will use an entity's
* {@link org.springframework.data.annotation.PersistenceCreator} to create a new instance of it to apply a new value
* for a given {@link PersistentProperty}. Will only be used if the {@link PersistentProperty} is to be applied on a
* completely immutable entity type exposing a entity creator.
* completely immutable entity type exposing an entity creator.
*
* @author Oliver Drotbohm
* @author Mark Paluch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private Object projectCollectionElements(Collection<?> sources, TypeInformation<
}

/**
* Creates projections of the given {@link Map}'s values if necessary and returns an new {@link Map} with the handled
* Creates projections of the given {@link Map}'s values if necessary and returns a new {@link Map} with the handled
* values.
*
* @param sources must not be {@literal null}.
Expand All @@ -168,7 +168,7 @@ private Map<Object, Object> projectMapValues(Map<?, ?> sources, TypeInformation<
}

/**
* Turns the given value into a {@link Collection}. Will turn an array into a collection an wrap all other values into
* Turns the given value into a {@link Collection}. Will turn an array into a collection a wrap all other values into
* a single-element collection.
*
* @param source must not be {@literal null}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import com.querydsl.core.types.EntityPath;

/**
* Strategy interface to abstract the ways to translate an plain domain class into a {@link EntityPath}.
* Strategy interface to abstract the ways to translate a plain domain class into a {@link EntityPath}.
*
* @author Oliver Gierke
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public String getId() {

/**
* Creates the actual component instance given a {@link RepositoryFactorySupport repository factory supplier} and the
* repository {@link Class type}. This method is an utility for to create a repository. This method will obtain a
* repository {@link Class type}. This method is a utility for to create a repository. This method will obtain a
* {@link RepositoryFactorySupport repository factory} and configure it with {@link CdiRepositoryConfiguration}.
*
* @param factorySupplier must not be {@literal null}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected CdiRepositoryExtensionSupport() {
}

/**
* Implementation of a an observer which checks for Spring Data repository types and stores them in
* Implementation of an observer which checks for Spring Data repository types and stores them in
* {@link #repositoryTypes} for later registration as bean type.
*
* @param <X> The type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public static boolean hasBean(Class<?> type, BeanDefinitionRegistry registry) {
}

/**
* Creates a actual {@link RepositoryConfiguration} instance for the given {@link RepositoryConfigurationSource} and
* Creates an actual {@link RepositoryConfiguration} instance for the given {@link RepositoryConfigurationSource} and
* interface name. Defaults to the {@link DefaultRepositoryConfiguration} but allows sub-classes to override this to
* customize the behavior.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ public <T, ID> EntityInformation<T, ID> getEntityInformation(Class<T> domainClas
}

/**
* Create a instance of the repository base class providing store-specific built-in repository functionality of a
* Create an instance of the repository base class providing store-specific built-in repository functionality of a
* typical {@code CrudRepository}.
*
* @param metadata repository metadata.
Expand Down
Loading