Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
arysin committed Mar 21, 2023
1 parent d4c4c89 commit 643642a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/groovy/org/dict_uk/expand/Expand.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1654,7 +1654,7 @@ class Expand {

if( Args.args.indent ) {

executor.execute( { exe ->
executor.execute( {
List<String> indentedLines = dictSorter.indent_lines(sortedEntries)

validator.check_indented_lines(indentedLines, limitedVerbLemmas)
Expand All @@ -1670,8 +1670,8 @@ class Expand {
}

new File("dict_corp_vis.txt").withWriter("utf-8") { Writer f ->
indentedLines.each { String it ->
f.write(it)
indentedLines.each { String line ->
f.write(line)
f.write('\n')
}
}
Expand Down

0 comments on commit 643642a

Please sign in to comment.