Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed Jun 11, 2024
1 parent 7695d5e commit 24581e4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/java/net/snowflake/client/core/URLUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public static boolean isValidURL(String url) {
Matcher matcher = pattern.matcher(url);
return matcher.find();
} catch (PatternSyntaxException pex) {
// Do we really need this part? Any use cases?
logger.debug("The URL REGEX is invalid. Falling back to basic sanity test");
try {
new URL(url).toURI();
Expand Down
1 change: 0 additions & 1 deletion src/test/java/net/snowflake/client/TestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,3 @@ public static void withRandomSchema(
}
}
}
// Testing

0 comments on commit 24581e4

Please sign in to comment.