forked from phoedos/pmd
Fixes for exclude-pattern
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.2.x@6169 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
parent
123fc5f64f
commit
185958c419
@ -1,5 +1,6 @@
|
||||
???? - 4.2.3:
|
||||
|
||||
Fixes for exclude-pattern
|
||||
|
||||
May 20, 2008 - 4.2.2:
|
||||
|
||||
|
@ -455,6 +455,7 @@ public class PMD {
|
||||
ctx.setReport(report);
|
||||
|
||||
ctx.setSourceCodeFilename(fileName);
|
||||
ctx.setSourceCodeFile(new File(fileName));
|
||||
if (LOG.isLoggable(Level.FINE)) {
|
||||
LOG.fine("Processing " + ctx.getSourceCodeFilename());
|
||||
}
|
||||
@ -702,6 +703,7 @@ public class PMD {
|
||||
ctx.setReport(report);
|
||||
|
||||
ctx.setSourceCodeFilename(niceFileName);
|
||||
ctx.setSourceCodeFile(new File(niceFileName));
|
||||
if (LOG.isLoggable(Level.FINE)) {
|
||||
LOG.fine("Processing " + ctx.getSourceCodeFilename());
|
||||
}
|
||||
@ -771,6 +773,7 @@ public class PMD {
|
||||
String niceFileName = dataSource.getNiceFileName(shortNamesEnabled,
|
||||
inputPath);
|
||||
ctx.setSourceCodeFilename(niceFileName);
|
||||
ctx.setSourceCodeFile(new File(niceFileName));
|
||||
LOG.fine("Processing " + ctx.getSourceCodeFilename());
|
||||
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user