Browse Source

Fix typos in Javadoc.

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
Closes #3440
issue/3.5.x/3441
Tran Ngoc Nhan 4 weeks ago committed by Mark Paluch
parent
commit
97db86de88
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 2
      CI.adoc
  2. 2
      src/main/java/org/springframework/data/mapping/model/InstantiationAwarePropertyAccessor.java
  3. 4
      src/main/java/org/springframework/data/projection/ProjectingMethodInterceptor.java
  4. 2
      src/main/java/org/springframework/data/querydsl/EntityPathResolver.java
  5. 2
      src/main/java/org/springframework/data/repository/cdi/CdiRepositoryBean.java
  6. 2
      src/main/java/org/springframework/data/repository/cdi/CdiRepositoryExtensionSupport.java
  7. 2
      src/main/java/org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport.java
  8. 2
      src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java

2
CI.adoc

@ -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: Since this pipeline is purely Docker-based, it's easy to:
* Debug what went wrong on your local machine. * 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. * 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. All of these use cases are great reasons to essentially run what the CI server does on your local machine.

2
src/main/java/org/springframework/data/mapping/model/InstantiationAwarePropertyAccessor.java

@ -29,7 +29,7 @@ import org.springframework.util.Assert;
* A {@link PersistentPropertyAccessor} that will use an entity's * 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 * {@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 * 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 Oliver Drotbohm
* @author Mark Paluch * @author Mark Paluch

4
src/main/java/org/springframework/data/projection/ProjectingMethodInterceptor.java

@ -143,7 +143,7 @@ class ProjectingMethodInterceptor implements MethodInterceptor {
} }
/** /**
* 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. * values.
* *
* @param sources must not be {@literal null}. * @param sources must not be {@literal null}.
@ -168,7 +168,7 @@ class ProjectingMethodInterceptor implements MethodInterceptor {
} }
/** /**
* 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. * a single-element collection.
* *
* @param source must not be {@literal null}. * @param source must not be {@literal null}.

2
src/main/java/org/springframework/data/querydsl/EntityPathResolver.java

@ -18,7 +18,7 @@ package org.springframework.data.querydsl;
import com.querydsl.core.types.EntityPath; 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 * @author Oliver Gierke
*/ */

2
src/main/java/org/springframework/data/repository/cdi/CdiRepositoryBean.java

@ -279,7 +279,7 @@ public abstract class CdiRepositoryBean<T> implements Bean<T>, PassivationCapabl
/** /**
* Creates the actual component instance given a {@link RepositoryFactorySupport repository factory supplier} and the * 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}. * {@link RepositoryFactorySupport repository factory} and configure it with {@link CdiRepositoryConfiguration}.
* *
* @param factorySupplier must not be {@literal null}. * @param factorySupplier must not be {@literal null}.

2
src/main/java/org/springframework/data/repository/cdi/CdiRepositoryExtensionSupport.java

@ -65,7 +65,7 @@ public abstract class CdiRepositoryExtensionSupport implements Extension {
} }
/** /**
* 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. * {@link #repositoryTypes} for later registration as bean type.
* *
* @param <X> The type. * @param <X> The type.

2
src/main/java/org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport.java

@ -251,7 +251,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
} }
/** /**
* 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 * interface name. Defaults to the {@link DefaultRepositoryConfiguration} but allows sub-classes to override this to
* customize the behavior. * customize the behavior.
* *

2
src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java

@ -538,7 +538,7 @@ public abstract class RepositoryFactorySupport
public abstract <T, ID> EntityInformation<T, ID> getEntityInformation(Class<T> domainClass); public abstract <T, ID> EntityInformation<T, ID> getEntityInformation(Class<T> domainClass);
/** /**
* 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}. * typical {@code CrudRepository}.
* *
* @param metadata repository metadata. * @param metadata repository metadata.

Loading…
Cancel
Save