소스 검색

Fix compile error (method not available in 1.5)

Change-Id: I07aca821010daca75a66506b9ca738bc8c262abb
Signed-off-by: Markus Keller <markus_keller@ch.ibm.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v2.2.0.201212191850-r
Markus Keller 11 년 전
부모
커밋
a27c1a6b15
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileBasedConfig.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileBasedConfig.java 파일 보기

@@ -192,7 +192,7 @@ public class FileBasedConfig extends StoredConfig {
bos.write(0xEF);
bos.write(0xBB);
bos.write(0xBF);
bos.write(text.getBytes(RawParseUtils.UTF8_CHARSET));
bos.write(text.getBytes(RawParseUtils.UTF8_CHARSET.name()));
out = bos.toByteArray();
} else {
out = Constants.encode(text);

Loading…
취소
저장