Tagged Questions

6
votes
15answers
262 views

Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated?

In general I come across this a lot. Some of my co-workers prefer very simple, easy to read classes even if that means that there is some code duplication, whereas I do everything …
12
votes
11answers
336 views

Tools to identify code duplications

I have being reading and tracking some questions on code reuse and I have this question: Are there any tools to identify duplicate or similar code? I have googled this a while ag …
2
votes
2answers
133 views

Static code analysis tool to detect code duplication in Maven projects

After I found out that there's no plugin for Simian in Maven 2, we turned to CPD, but it doesn't perform as well as Simian (observed in our Ant projects that use both Simian and CP …
12
votes
20answers
784 views

Any valid reason for code duplication?

I'm currently reviewing a very old C++ project and see lots of code duplication there. For example, there is a class with 5 MFC message handlers each holding 10 identical lines of …
7
votes
6answers
281 views

How can I find copy/paste (duplicate, clone) code in Perl?

I've searched the Internet for a while now and I have not been able to find any free (or cheap) tools/utilities/modules that can analyze a set of Perl files (modules or scripts) an …
2
votes
4answers
77 views

What’s the best way to avoid code duplication in these two functions that do the same thing?

Given this form (which contains a submit button): <form id="review_form"> <input type="submit" id="btn_submit" value="Submit with ajax! (submit button)"> </form&g …
1
vote
1answer
28 views

How best to handle duplicated code across platforms/tiers?

I'm curious about how everyone handles code duplication across multiple platforms/tiers. As an example, in our application we have a screen that displays claims. A claim is deemed …
4
votes
1answer
131 views

Why I see so much code duplication in Linq in Reflector?

Hi! Edit: I made a mistake in my original question. It should be about methods Last and LastOrDefault (or Single and SingleOrDefault, or First and FirstOrDefault - plenty of them! …
15
votes
9answers
983 views

How to detect code duplication during development ?

We have a fairly large code base, 400K LOC of C++, and code duplication is something of a problem. Are there any tools which can effectively detect duplicated blocks of code? Idea …
13
votes
16answers
810 views

How fanatically do you eliminate Code Duplication?

How fanatic are you about elimination of duplicate code? Personally, whenever I see duplicate code, either in testing code or production, I tend to refactor the duplication away. …
3
votes
6answers
214 views

How to find a similar code fragment?

Does anyone has some tool or some recommended practice how to find a piece of code which is similar to some other code? Often I write a function or a code fragment and I remember …
3
votes
5answers
240 views

How to deal with duplicate code under Linux?

I'm looking for the best approach to dealing with duplicate code in a legacy PHP project with about 150k lines of code. Is this something best approached manually or are there sta …
3
votes
8answers
269 views

How to refactor rapidly evolving code?

I have some research code that's a real rat's nest, with code duplication everywhere, and clearly needs to be refactored. However, the code base is evolving as I come up with new …
2
votes
4answers
128 views

What duplication detection threshold do you use?

We all agree that duplication is evil and should be avoid (Don't Repeat Yourself principle). To ensure that, static analysis code should be used like Simian (Multi Language) or Cl …
8
votes
5answers
1k views

What tool to find code duplicates in C# projects?

What tool would you recommend for finding code duplicates in C# code?

1 2 next
15 30 50 per page