b.getString(0, b.size(), false));
}
+ @Test
+ public void testModifyNL1() throws Exception {
+ ApplyResult result = init("NL1");
+ assertEquals(1, result.getUpdatedFiles().size());
+ assertEquals(new File(db.getWorkTree(), "NL1"), result
+ .getUpdatedFiles().get(0));
+ checkFile(new File(db.getWorkTree(), "NL1"),
+ b.getString(0, b.size(), false));
+ }
+
private static byte[] readFile(final String patchFile) throws IOException {
final InputStream in = DiffFormatterReflowTest.class
.getResourceAsStream(patchFile);
if (!isChanged(oldLines, newLines))
return; // don't touch the file
StringBuilder sb = new StringBuilder();
- final String eol = rt.size() == 0
- || (rt.size() == 1 && rt.isMissingNewlineAtEnd()) ? "\n" : rt //$NON-NLS-1$
- .getLineDelimiter();
for (String l : newLines) {
- sb.append(l);
- if (eol != null)
- sb.append(eol);
+ // don't bother handling line endings - if it was windows, the \r is
+ // still there!
+ sb.append(l).append('\n');
}
sb.deleteCharAt(sb.length() - 1);
FileWriter fw = new FileWriter(f);
fw.close();
}
- private boolean isChanged(List<String> ol, List<String> nl) {
+ private static boolean isChanged(List<String> ol, List<String> nl) {
if (ol.size() != nl.size())
return true;
for (int i = 0; i < ol.size(); i++)