Skip to content

Commit

Permalink
[ZEPPELIN-6095] fix indent & remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
s2moon98 committed Nov 6, 2024
1 parent 56b7789 commit b22eafe
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
import java.security.PrivilegedExceptionAction;
Expand Down Expand Up @@ -593,7 +592,7 @@ private void validateConnectionUrl(String url) {
String decodedUrl;
decodedUrl = URLDecoder.decode(url, StandardCharsets.UTF_8);

if (containsIgnoreCase(decodedUrl, ALLOW_LOAD_LOCAL_IN_FILE_NAME) ||
if (containsIgnoreCase(decodedUrl, ALLOW_LOAD_LOCAL_IN_FILE_NAME) ||
containsIgnoreCase(decodedUrl, AUTO_DESERIALIZE) ||
containsIgnoreCase(decodedUrl, ALLOW_LOCAL_IN_FILE_NAME) ||
containsIgnoreCase(decodedUrl, ALLOW_URL_IN_LOCAL_IN_FILE_NAME)) {
Expand Down

0 comments on commit b22eafe

Please sign in to comment.