spotless 적용

This commit is contained in:
2026-03-03 23:01:22 +09:00
parent 69eaba1a83
commit 335f0dbb9b

View File

@@ -417,6 +417,7 @@ public class DatasetService {
} }
private String escape(String path) { private String escape(String path) {
// 쉘 커맨드에서 안전하게 사용할 수 있도록 문자열을 작은따옴표로 감싸면서, 내부의 작은따옴표를 이스케이프 처리
return "'" + path.replace("'", "'\"'\"'") + "'"; return "'" + path.replace("'", "'\"'\"'") + "'";
} }