summaryrefslogtreecommitdiffstats
path: root/test/Java/JAVAHCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Java/JAVAHCOMSTR.py')
-rw-r--r--test/Java/JAVAHCOMSTR.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Java/JAVAHCOMSTR.py b/test/Java/JAVAHCOMSTR.py
index f318524..f8120d6 100644
--- a/test/Java/JAVAHCOMSTR.py
+++ b/test/Java/JAVAHCOMSTR.py
@@ -52,7 +52,7 @@ import sys
outfile = open(sys.argv[1], 'wb')
for f in sys.argv[2:]:
infile = open(f, 'rb')
- for l in filter(lambda l: l != '/*javah*/\n', infile.readlines()):
+ for l in [l for l in infile.readlines() if l != '/*javah*/\n']:
outfile.write(l)
sys.exit(0)
""")