Fix incremental compilation on Windows

This commit is contained in:
Alexey Andreev 2019-02-27 13:21:04 +03:00
parent ade00cc984
commit ca017df6c9

View File

@ -875,7 +875,7 @@ public class CodeServlet extends HttpServlet {
List<String> result = new ArrayList<>(); List<String> result = new ArrayList<>();
for (File file : changedFiles) { for (File file : changedFiles) {
String path = file.getPath(); String path = file.getPath().replace('\\', '/');
if (!path.endsWith(".class")) { if (!path.endsWith(".class")) {
continue; continue;
} }