Skip to content

Commit ff04613

Browse files
committed
Polishing.
Add missing nullable annotation. See #3170
1 parent 1d02dd2 commit ff04613

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/data/querydsl/QuerydslUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ private QuerydslUtils() {}
4141
* @param path can be {@literal null}.
4242
* @return
4343
*/
44-
public static String toDotPath(Path<?> path) {
44+
public static String toDotPath(@Nullable Path<?> path) {
4545
return toDotPath(path, "");
4646
}
4747

0 commit comments

Comments
 (0)