Compare commits

..

No commits in common. "040e04ff2a8daf8230ad5725e41cddaed58fcb5d" and "7dc5441c89e1e3b6ff2c7c8844675fd201d64be4" have entirely different histories.

3 changed files with 6 additions and 16 deletions

View File

@ -1,11 +1,9 @@
root = true
[*.{ps1,java}]
[*.java]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
end_of_line = lf
[*.java]
insert_final_newline = true
insert_final_newline = true
trim_trailing_whitespace = true

View File

@ -1,10 +0,0 @@
<#
.SYNOPSIS
Delete all compiled files of the current folder and its subfolders.
.DESCRIPTION
This script deletes all the compiled files of the current folder and its subfolders.
.EXAMPLE
Delete all compiled files of the current folder and its subfolders.
.\Clear
#>
Get-ChildItem -Path . -Include *.class -File -Recurse | foreach { $_.Delete() }

2
clear.sh Normal file
View File

@ -0,0 +1,2 @@
# remove all compiled class files.
rm **/*.class