Review changes.

This commit is contained in:
Can Bezmen
2020-05-08 21:11:27 +03:00
parent 090c85c7ed
commit 06a55b8bcd
4 changed files with 7 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
/**
* This jackson module provides support to deserialize spring {@link Page} objects.
* This Jackson module provides support to deserialize Spring {@link Page} objects.
*
* @author Pascal Büttiker
*/

View File

@@ -24,10 +24,10 @@ import com.fasterxml.jackson.databind.module.SimpleSerializers;
import org.springframework.data.domain.Sort;
/**
* This jackson module provides support to add serialize and deserialize for spring
* This Jackson module provides support for serializing and deserializing for Spring
* {@link Sort} object.
*
* @author canbezmen
* @author can bezmen
*/
public class SortJacksonModule extends Module {

View File

@@ -34,9 +34,10 @@ import feign.codec.EncodeException;
import org.springframework.data.domain.Sort;
/**
* This class provides support to serialize and deserialize spring {@link Sort} object.
* This class provides provides support for serializing and deserializing for Spring
* {@link Sort} object.
*
* @author canbezmen
* @author can bezmen
*/
public class SortJsonComponent {

View File

@@ -38,7 +38,7 @@ import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
/**
* @author canbezmen
* @author can bezmen
*/
@ExtendWith(MockitoExtension.class)
class SortJacksonModuleTests {