Code duplication, also sometimes known as code cloning, is a programming practice consisting in repeating the same (or similar) sequences of code statements within a software same project. Disadvantages of c.d.: bug propagation, increased code complexity, code clutter. Advantages of c.d.: reduced ...
1
vote
3answers
51 views
PHP code duplication. At what point is duplicating code the right way to go?
I am using CodeIgniter but this question applies in a general sense too.
I have a table of transactions with columns
item_name | type | date | price | document
I want to do the following in two ...
0
votes
4answers
42 views
code duplication, with similar code in methods doing the opposite thing with multiple objects
I was wondering if there was a way to remove this sort of duplicate code (it crops up all across my program)
public void pickUp(Cointainer in)
{
if(playerContainer.returnSomething() == null)
...
2
votes
3answers
118 views
How to avoid getters/setters in classes with many instance variables
I'll try to keep it short.
I have classes with many instance variables (30+) and hence many getters/setters. The classes by themselves are simple, but because of the getters/setters the LOC just ...
0
votes
2answers
40 views
How to remove code duplicity in python list comprehension?
How to resolve the following code duplicity by combining into one list comprehension?
myList =[ //someList ]
thierList=[ //someOtherList ]
if name:
[x for x in ...
2
votes
1answer
21 views
Ant attributes duplication for javac
I have an Ant build with a lot of javac tasks.
I want all of them to be executed with the following attributes:
debug = "true" debuglevel = "lines,vars,source"
(by default debugging information is ...
1
vote
1answer
86 views
enums vs. classes: code duplication, composition, extension, generics
Note: I realize that this is very similar to the question eliminating
duplicate Enum code, but I think it may be useful to discuss this
separately since I'm also mentioning issues like ...
3
votes
2answers
103 views
Patterns to remove duplicated code
A Java project I've been working on integrates with several RDBMSs. The most obvious way for us to reduce the code duplication between the way we handle them is to make a type hierarchy like:
...
-3
votes
1answer
88 views
remove not-exact-same duplicated code in C++ [closed]
I am doing C++ coding on Linux.
I find some duplicated code, which can be removed by calling funtions.
But, the duplication in different parts of the c++ file is not exactly same.
How to degsign ...
-1
votes
1answer
39 views
Avoiding duplication in generating an id
The method generateId allocate ids to students,the method storeStudent is called by the method readData which reads data, the StudentId field in the data are all set to unknown so the method ...
0
votes
2answers
49 views
Encapsulating related fields into a companion object/class and avoiding duplication
My application uses a properties-file to load several properties.
Every instance of the application has 3 environment-related parameters - one of them is a property, the other two are computed based ...
0
votes
0answers
87 views
Prevent duplicating application from USB memory
I wrote autorun application based on usb stick memory serial number.
That means that the application will work only on specific registered serial number of the usb memory stick\device.
I found out ...
1
vote
0answers
49 views
MVC - Several models have to do the same thing, how not to duplicate code? [closed]
I want to ask you, what would be strict and what would be optimal (or both ;p ) approach to my problem with MVC.
I have an application that consists of few panels. Each panel have own controller and ...
1
vote
1answer
126 views
avoid code duplication when writing iterator and const_iterator
I'm trying to write a single iterator class that can cover both const_iterator and iterator classes to avoid code duplication.
While reading some other questions, I came across this post that asks ...
0
votes
1answer
64 views
Repeated Code Asserting and Throwing
So far I've learned that (usually) when you assert, you should also throw. At first I wasn't sure it was right, it just made sense1, and then this answer verified.
The problem I have is that it ...
0
votes
1answer
27 views
iOS Framework and duplicated librairies
I'm currently developing a framework which integrates SBJson inside.
So I have a blahblah.framework, and put it in my project.
But in my project I'm also using SBJson ; so the compilator says ...
1
vote
1answer
31 views
Duplicated code sections - move to a service?
I have a C# application that enables users to write a test and execute it (client). It also supports distributed execution over multiple machines using a central server and agents on said machines.
...
1
vote
2answers
80 views
SAS - hash tables and has_next
I'm looking for an elegant solution to the below issue that will help avoid code duplication. You can see that this line:
put auction_id= potential_buyer= ;* THIS GETS REPEATED;
Gets repeated in ...
3
votes
2answers
94 views
How can I avoid code duplication with Fragment callbacks to a details activity?
I'm using a master/detail pattern with one activity managing the 2-pane view and the selector list and the other activity managing the detail fragments. I'm using an interface to handle fragment ...
0
votes
1answer
41 views
how to write this code to remove duplication?
I have a file upload, which does a few things but mainly
uses iframes to simulate ajax (ajax cant handle file data, at least not cross browser)
creates (clones) a new upload input if needed and ...
0
votes
3answers
73 views
How to prevent duplicate code when implementing progressive enhancement?
I'm running a PHP webapp that allows users to view lists of item.
The bare-boned site uses PHP to write the HTML to show the search results:
<body>
<?php
foreach($results as $item) ...
0
votes
2answers
75 views
PagedList very redundant and repetive code
I have the pagedlist on my page and it allows 5 pages to view results results its in the format www.example.com/viewing?1 ... 2 ...3 all the way to 5 and I am checking which page i am on doing
@if ...
0
votes
1answer
200 views
Rails Jquery rendering js.erb partial from another js.erb file
I have duplicate js.erb code between different model's ajax responses. I would like to refactor the duplicate js.erb code by passing arguments into a js.erb partial.
How do i render a js.erb partial ...
1
vote
2answers
67 views
How do I avoid duplicating validation logic between the domain and application layers?
Any given entity in my domain model has several invariants that need be enforced -- a project's name must be at least 5 characters, a certain product must exist to be associated with the project, the ...
-3
votes
1answer
39 views
How to target a href value and use it to duplicate entire block where it is found? [closed]
Please suggest jQuery code to copy specific entire li block and paste it to another location exactly as it is.
Consider example:
Magic jQuery code inserted in Header section of website only once.
...
1
vote
2answers
119 views
php 5.3 avoid try/catch duplication nested within foreach loop (code sandwich)
I have a class with methodA, which has existing structure as following
function methodA() {
$providers = $this->getFirstSetOfProviders();
foreach ($providers as $provider) {
try {
...
0
votes
1answer
64 views
Avoiding code duplication in ASP MVC4
I have a a View with three news boxes: NewsOfTheDay, NewsOfTheWeek, NewsOfTheMonth.
In my model I have this same three properties.
Now my code looks like this:
@{var news=Model.NewsOfTheDay;}
<div ...
-2
votes
2answers
86 views
remove or replace duplicated C++ code in one function on Linux [closed]
I am working on C++ on Linux.
I need to remove some duplicated code in two functions.
One function is for computing and another one is for logging.
There are some code that are duplicated in ...
-5
votes
3answers
105 views
Inheriting from class forces a lot of code duplication [closed]
I've got 2 classes, one of which I've already written a while back and I want to have the second class inherit from it. The problem is that I'll have to override most of the base class's functions, by ...
4
votes
1answer
130 views
Using __class__ to create instances
Is it a good idea to use __class__ to create new instances within the class?
The following code is an example of doing this:
from collections import namedtuple
_Position = namedtuple('Position', ...
2
votes
5answers
119 views
How to print a bunch of integers with the same formatting?
I would like to print a bunch of integers on 2 fields with '0' as fill character. I can do it but it leads to code duplication. How should I change the code so that the code duplication can be ...
1
vote
1answer
83 views
Pattern to avoid coupling between controller actions of parent and child controllers
Assume you have a Question and an Answer models, and that new answers are submitted from the questions#show page (like StackoverFlow).
Unless the questions#show and the answers#create actions load ...
1
vote
1answer
241 views
C# strongly typed datasets - passing different datatables to the same method (interface?)
I am trying to pass separate typed dataset data tables to the same method. The datatables are similar, but distinct. The method performs the same function on the datatables. Instead of essentially ...
0
votes
1answer
130 views
How to Generify REST Controller in Spring MVC to Remove Duplication
I have a design issue I cannot for the life of me figure out.
Good code has no duplication. I have generified my DAO so all basic crud operations are inherited
I'm trying to do the same with Spring ...
0
votes
2answers
49 views
How can I iterate over a data file without code duplication in python?
I want to write a script to process some data files. The data files are just ascii text with columns of data, here is a simple example...
The first column is an ID number, in this case from 1 to 3. ...
1
vote
1answer
140 views
generic code duplication detection tool
I'm looking for a code duplication tool that is language agnostic. It's easy to find language specific code duplication tools (for Java, C, PHP, ...), but I'd like to run some code duplication ...
0
votes
1answer
58 views
PHP: Duplicates in creating a select box, need highest valued INTs only
I'm having a bit of an issue with duplication here,
I believe I can clip dupes at any point as long as my return value for
the dupe remains the the largest int value.
Here's a code stamp:
...
0
votes
3answers
89 views
Optimize Duplicate Detection
Background
This is an optimization problem. Oracle Forms XML files have elements such as:
<Trigger TriggerName="name" TriggerText="SELECT * FROM DUAL" ... />
Where the TriggerText is ...
2
votes
1answer
85 views
How do I avoid duplicating HTML in javascript and the backend?
I'm writing a facebook-like posting system where a user can type in a text comment and have it immediately appear on the page in a properly styled and formatted box, as simultaneously the text is ...
3
votes
2answers
240 views
Remove duplicate PL/SQL code from Oracle Forms to expedite code review
Background
Rewriting a system to migrate away from Oracle Forms. The new system must provide the same functionality of the current system, and more. The current system is undocumented: no business ...
1
vote
2answers
116 views
Rails sharing javascript between views
In my rails application, I have a piece of javascript that is exactly duplicate between 2 of my 8 views. Where is the proper place the place the javascript?
The rails application structure places ...
1
vote
4answers
66 views
Elegant way to reduce code duplication between prompting the user to save when closing the program?
When exiting the program if the programmer handles the FormClosing event if there is unsaved data the programmer can prompt a save dialog asking them if they want to save, not save, or cancel the ...
1
vote
1answer
58 views
Design Issue: Trying to avoid code duplication using scala type bounds
I'm new to Scala, and I'm trying to use type bounds to avoid code duplication in the following code (cleaned from irrelevant stuff):
trait StandardStep1[-I1] {
def next_step(i:I1):StandardStep2
}
...
3
votes
9answers
118 views
Remove code duplication in specific example
I have three methods with duplicated code.
The first two methods are nearly completely duplicated. The third one differs a bit as for fires more information should be drawn.
I want to remove this ...
1
vote
2answers
129 views
Avoid code duplication in JSP
I am using JSP and Spring framework. In a page, I want to have five buttons next to a corresponding select element. My question is how can I avoid repeating the code for that?
Here is the code I have ...
1
vote
5answers
136 views
How do I reduce this code duplication
I'm stuck on how I can reduce this code duplication, I'm using the TextToSpeech engine and using locales so the user can select their language.
language is a Spinner.
...
0
votes
2answers
73 views
Removing HTML duplicated code: Monolithic file vs Separate files
Continuing this question What is the best way to manage duplicate code in static HTML websites ...
I'm starting to create PHP variables for each chunk of duplicated HTML code. My website is divided ...
0
votes
2answers
101 views
Multisite admin on completely different Codeigniter install.. Duplicate content?
I am using codeigniter for three of my websites. I use a seperate install for each as I am under the belief that as they grow they will each need there own server, and this setup just seems easier.
I ...
0
votes
2answers
62 views
Compact way of assigning same handler to many events
In my user control code I noticed lots of events with the same handler:
btnMas.MouseDown += MyMouseDown;
btnMenos.MouseDown += MyMouseDown;
txtValue.MouseDown += MyMouseDown;
lblMax.MouseDown += ...
3
votes
4answers
122 views
Code duplication (or not) - JAVA
I have a situation of code duplication (or is it ? ) and I don't know how to avoid it , but still keep clarity in my code.
Let me hugely oversimplify the situation:
// let's say I have a interface ...
1
vote
1answer
168 views
Ignore duplicate import statements in sonar
I have a Groovy project that's being analyzed by Sonar 3.0.1. We have duplicate code detection turned on, using the Sonar detector.
In one set of files, it's detecting 11 lines of duplicated import ...


