This is an automated email from the ASF dual-hosted git repository.
hepin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko.git
The following commit(s) were added to refs/heads/main by this push:
new 343491bcdb remove unused script (#2247)
343491bcdb is described below
commit 343491bcdb3963ad167f3e3289f01d3eeb53e27b
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Sep 20 16:15:02 2025 +0100
remove unused script (#2247)
---
scripts/find-javadoc-error.pl | 15 ---------------
1 file changed, 15 deletions(-)
diff --git a/scripts/find-javadoc-error.pl b/scripts/find-javadoc-error.pl
deleted file mode 100755
index 12bede4313..0000000000
--- a/scripts/find-javadoc-error.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-my $active = 0;
-my $print = 0;
-while (<>) {
- $active = 1, next if /Generating.*\.html/;
- $active = 0, next if /Genjavadoc Java API documentation successful\./;
- $print = 1 if /^\[error].*error:/;
- $print = 0 if /warning:/;
- print if $active && $print;
-}
-
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]