Browse Source

Merge branch '1.9.x'

master
Stefan Bodewig 7 years ago
parent
commit
d7e4064f5b
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/tests/junit/org/apache/tools/ant/types/selectors/ModifiedSelectorTest.java

+ 2
- 1
src/tests/junit/org/apache/tools/ant/types/selectors/ModifiedSelectorTest.java View File

@@ -42,6 +42,7 @@ import org.apache.tools.ant.types.selectors.modifiedselector.HashvalueAlgorithm;
import org.apache.tools.ant.types.selectors.modifiedselector.ModifiedSelector; import org.apache.tools.ant.types.selectors.modifiedselector.ModifiedSelector;
import org.apache.tools.ant.types.selectors.modifiedselector.PropertiesfileCache; import org.apache.tools.ant.types.selectors.modifiedselector.PropertiesfileCache;
import org.apache.tools.ant.util.FileUtils; import org.apache.tools.ant.util.FileUtils;
import org.apache.tools.ant.util.StringUtils;
import org.junit.Assume; import org.junit.Assume;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore; import org.junit.Ignore;
@@ -947,7 +948,7 @@ public class ModifiedSelectorTest {
try { try {
FileWriter out = new FileWriter(file.getAbsolutePath(), true); FileWriter out = new FileWriter(file.getAbsolutePath(), true);
out.write(line); out.write(line);
out.write(System.lineSeparator());
out.write(StringUtils.LINE_SEP);
out.flush(); out.flush();
out.close(); out.close();
} catch (Exception e) { } catch (Exception e) {


Loading…
Cancel
Save