Polishing.

Add missing nullable annotation.

See #3170
This commit is contained in:
Mark Paluch
2025-05-12 12:03:15 +02:00
parent adf8828560
commit 732e1c5516

View File

@@ -41,7 +41,7 @@ public abstract class QuerydslUtils {
* @param path can be {@literal null}.
* @return
*/
public static String toDotPath(Path<?> path) {
public static String toDotPath(@Nullable Path<?> path) {
return toDotPath(path, "");
}