Tagged Questions
The cpd tag has no wiki summary.
5
votes
1answer
131 views
using cpd on python
I am trying to run the GUI version of CPD on my python codebase, but no duplicate code is returned even when i set the min chunk size to 1.
My code isnt that good.
has anyone ever had any success ...
3
votes
1answer
244 views
PMD/CPD: Ignore bits of code using comments
Is there a way to tell PMD to ignore checking parts of code for duplication?
For example, can I do something like this:
// CPD-Ignore-On
...
// CPD-Ignore-Off
Currently I have PMD set up like this ...
1
vote
0answers
125 views
copy paste detector - how to avoid delegate pattern
We use CPD and works very well.
Some interfaces are implemented in multiple classes. These classes share the implementation code using 'delegate' pattern [ ...
0
votes
2answers
74 views
How to use static code analyzer CPD ignoreLiterals and ignoreIdentifiers from command-line?
That's about PMD static analyzer's feature: Copy-Paste Detector.
Yes, I read http://pmd.sourceforge.net/cpd.html thoroughly.
But if I run CPD from ant-task, I can fine-tune its work by specifying ...