]> source.dussan.org Git - sonarqube.git/blob
14662159bf61145b3272701ab7d15c0124bd3c6c
[sonarqube.git] /
1 <p>
2 The code here uses <code>File.separator</code> 
3 where a regular expression is required. This will fail on Windows
4 platforms, where the <code>File.separator</code> is a backslash, which is interpreted in a
5 regular expression as an escape character. Amoung other options, you can just use
6 <code>File.separatorChar=='\\' &amp; "\\\\" : File.separator</code> instead of
7 <code>File.separator</code>
8
9 </p>