Skip to content

Commit b85a0a4

Browse files
committed
Polishing.
See #2438 Original pull request #2439
1 parent 4ed32e8 commit b85a0a4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/test/java/org/springframework/data/jpa/repository/support/FetchableFluentQueryByExampleUnitTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class FetchableFluentQueryByExampleUnitTests {
3232
@Test // GH-2438
3333
@SuppressWarnings({ "rawtypes", "unchecked" })
3434
void multipleSortBy() {
35+
3536
Sort s1 = Sort.by(Order.by("s1"));
3637
Sort s2 = Sort.by(Order.by("s2"));
3738
FetchableFluentQueryByExample f = new FetchableFluentQueryByExample(Example.of(""), null, null, null, null, null);

src/test/java/org/springframework/data/jpa/repository/support/FetchableFluentQueryByPredicateUnitTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class FetchableFluentQueryByPredicateUnitTests {
3131
@Test // GH-2438
3232
@SuppressWarnings({ "rawtypes", "unchecked" })
3333
void multipleSortBy() {
34+
3435
Sort s1 = Sort.by(Order.by("s1"));
3536
Sort s2 = Sort.by(Order.by("s2"));
3637
FetchableFluentQueryByPredicate f = new FetchableFluentQueryByPredicate(null, null, null, null, null, null, null);

0 commit comments

Comments
 (0)