Skip to content

Commit

Permalink
Use spaces instead of tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvazan committed Jul 19, 2023
1 parent 66b18a7 commit 3b47454
Show file tree
Hide file tree
Showing 311 changed files with 15,046 additions and 15,047 deletions.
5 changes: 2 additions & 3 deletions scripts/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,8 @@ def output(text, indent=0):
text += '\n'
if re.fullmatch('(?:[*].*\n)+', text):
text = textwrap.indent(text, ' ')
for i in range(0, 5):
text = re.sub('^(\t*) {4}', r'\1\t', text, flags=re.MULTILINE)
text = textwrap.indent(text, indent * '\t')
text = text.replace('\t', ' ')
text = textwrap.indent(text, indent * ' ')
print(text, end='')

def redirect(path, generator):
Expand Down
3,814 changes: 1,907 additions & 1,907 deletions src/main/java/com/machinezoo/noexception/CheckedExceptionHandler.java

Large diffs are not rendered by default.

Loading

0 comments on commit 3b47454

Please sign in to comment.