(refs #251)Remove BOM from UTF-8 string.

This commit is contained in:
takezoe
2014-02-01 07:08:03 +09:00
parent 1c529eea3d
commit e87c69f989
3 changed files with 14 additions and 5 deletions

View File

@@ -63,9 +63,9 @@ object FileUtil {
if(dir.exists()){
FileUtils.deleteDirectory(dir)
}
try{
try {
action(dir)
}finally{
} finally {
FileUtils.deleteDirectory(dir)
}
}