(refs #445)Fix yen to backslash

This commit is contained in:
takezoe
2014-07-27 17:11:27 +09:00
parent 34e299bf52
commit 2a8706630a
2 changed files with 3 additions and 3 deletions

View File

@@ -102,7 +102,7 @@ object JGitUtil {
/**
* the line separator of this content ("LF" or "CRLF")
*/
val lineSeparator: String = if(content.exists(_.indexOf("¥r¥n") >= 0)) "CRLF" else "LF"
val lineSeparator: String = if(content.exists(_.indexOf("\r\n") >= 0)) "CRLF" else "LF"
}
/**