Skip to content

Commit

Permalink
T
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzelin committed Nov 20, 2024
1 parent 2eb521d commit eae5446
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,14 @@ private static String convertProblemsToIndentedString(List<String> problems, Str
}

private static List<Path> findNoticeFiles(Path root) throws IOException {
boolean e =
new File(
"/home/runner/work/paimon-python/paimon-python/paimon_python_java/paimon-python-java-bridge/src/resources/META-INF/NOTICE")
.exists();
if (true) {
throw new RuntimeException("DEBUG: " + e);
}

return Files.walk(root)
.filter(
file -> {
Expand Down

0 comments on commit eae5446

Please sign in to comment.