Refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.
0
votes
2answers
48 views
iOS Refactoring/design: One view controller to manage different models/streams?
I'm working on an app where I have different types of "streams" (think Twitter). In it I have a - pretty big - view controller that manages most of this. The stream consists of two main Entities - ...
0
votes
0answers
23 views
Eclipse Rename Refactoring before and after build
In a Java Project of mine , there are a few class files with the same name But in different packages.
I see different Search Results before and after project Build.
Before Build
When I try to ...
0
votes
0answers
53 views
Delegates for logging
How can I refactor this piece of code?
ulong get_item_action_id = log.LogAction(iteration_id, "GET_ITEM_SERVICE");
try
{
p = serv.GetItemById(get_item_action_id, ls.externalItem.item);
}
catch ...
11
votes
6answers
343 views
Why unused code should be deleted?
I have heard many times that unused code must be deleted from the project.
However it is not clear for me "why?".
My points for not deleting that are:
Code is already written, and efforts are spent
...
1
vote
1answer
33 views
ruby, rails, constants, resque
I have a bunch of classes that are resque jobs and I just noticed I have a constant defined in each named RECEIVER which contains the email distribution list for the jobs results.
What is the ...
0
votes
1answer
27 views
MVC Refactoring a [httpPost] handler on every page?
I have a simple form on every page of my site, the form pots back and is handled by the page controller.
ForController on each page..
[HttpPost]
public ActionResult ...
1
vote
0answers
25 views
Suppressing resharper rename in strings
Is there any way to suppress renaming strings after Ctr+R, Ctr+R in file, someting similar to:
// ReSharper disable InconsistentNaming
private readonly IMyClass NONStandardConvension;
// ReSharper ...
1
vote
1answer
55 views
Is it good to have unique method names across your application?
I might have the same method name across different and disparate objects:
Frame.hide = function() {
//
}
Dialog.hide = function() {
//
}
Treasure.hide = function() {
//
}
Is it good to keep method ...
0
votes
1answer
49 views
Refactoring similar methods for objective C
How do I refactor similar methods for the following (Objective C)?
- (void)insertNewSong:(Song *)newSong forArtist:(Artist *)artist {
NSMutableArray *newSongList = [[artist songs] mutableCopy];
...
0
votes
0answers
37 views
Javascript refactoring framework [closed]
I am currently creating a javascript refactoring framework in clojurescript. Because Javascript is a dynamic language and has no static type info I've used an points-to analysis to infer type info ...
0
votes
1answer
40 views
Refactoring and dependencies issue
I've got a number of SMS providers, each in a separate directory in the file system. The main class inside each provider directory extends abstract class ProviderAbstract.php which is located ...
1
vote
4answers
65 views
How can I DRY out this Ruby Code
How can I DRY out the following Ruby Code:
x = 'a random string to be formated'
x = x.split('^')[0] if x.include?('^')
x = x.split('$')[0] if x.include?('$')
x = x.split('*')[0] if ...
0
votes
1answer
49 views
Double Brace Initialization in java [duplicate]
I found i this site http://howtodoinjava.com/2012/11/20/double-brace-initialization-in-java/
a new way to start my collection
I alway have a doubt about java
Can i have one estructure like with do ...
0
votes
1answer
21 views
Renaming getter on renaming instance member?
In Eclipse one can generate a getter for an instance member, it then looks like this:
private String abc;
// generated using Source - Generate Getters and Setters
public String getAbc() {
return ...
0
votes
1answer
60 views
Avoiding boilerplate code when handling events (Backbone, CoffeeScript)
Consider the following example http://jsfiddle.net/YmWW2/.
How can I avoid redundant methods like execFoo, execBar, execBaz and pass string like "foo" directly to exec method?
events:
"click ...
1
vote
2answers
53 views
String.Concat with non-string arguments, unexpected behaviour
As a summary: I'm trying to get String.Concat to use a reference type's ToString overload when sticking string together.
Edit: Added this overview: The example code below is a cooked down extract of ...
0
votes
2answers
52 views
Can I refactor this simple callback pattern that uses the property decorator?
I'm just getting to grips with decorators in Python and using them to add callbacks to some instance variables using the following simple pattern:
class A(object):
def __init__(self):
...
0
votes
2answers
71 views
Logic of interaction among models in Ruby on Rails?
I'm studying Rails and am now trying to organize interaction among models. What I've written works, but I think that the code smells bad.
For example, I have two models with database tables Parcel ...
-1
votes
4answers
58 views
Simple refactoring [closed]
How can I refactor this code so I have only 1 line for assigning $filename value.
$i = 1;
$filename = $config->PHOTO_PATH . $list->ID . "_" . $i . ".jpg"
while(file_exists($filename))
{
...
2
votes
2answers
48 views
Get all JS variables that begin with a certain string
I'm writing a plugin for a website that I have no control over except my ability to add JS code to it (in fact it's a set of html docs generated by an obsolete wysiwyg html editor).
For my purposes, ...
1
vote
2answers
80 views
Refactor the foreach loop with continue in it?
I was trying to refactor a very long foreach loop. I got stuck as at few places I am having continue in it. Here is some dummy code to mimic my original code
IEnumerable<dynamic> allData = ...
1
vote
1answer
46 views
Optimise and reduce redundancy in Flask routing
I have a number of objects, User, Role, Post, Category and possibly more, and have a number of admin views that basically just display and handle forms associated with those objects. My current code ...
0
votes
1answer
85 views
Effectively Renaming a Rails Project [closed]
What is the most effective, secure and easiest way to rename a Ruby on Rails 3 project?
0
votes
0answers
62 views
Generate method stub snippet: Alter signature to make access level public
By default, the "Extract method..." command of Visual Studio generates method stubs with the lowest possible access level, usually private. The relevant code snippet for it only references ...
0
votes
1answer
25 views
Eclipse. Move a static final variable to a static nested class
How to do that? I have got the static variable in the class called Constants. Now I'd like to move it to the static nested class called Constants.States. If I just right-click and select Refactor - ...
0
votes
4answers
71 views
Creating a function identical to str.title() function in Python
My exercise is to write a function that works identically as the str.title() function. here's my poor solution so far
def my_title(s):
list = []
for char in s:
if char.isalpha():
...
2
votes
4answers
53 views
Refactoring conditional variable assignment
I'm working on a project. Currently I have a fairly large conditional statement, that assigns a value to a variable based on some input parameters. So, I have something like this.
if some condition
...
1
vote
1answer
53 views
2 Product lines sharing same code
We are working on two product lines that will share the same code.
For functionality that differs, I have both product lines implement the same interface (or base classes in some case) and these ...
1
vote
2answers
72 views
Big code refactoring : create a new project or refactor package per package [closed]
We are a little team working on a Rails 2.3 project. A short description: this project has currently
460 000 lines of Ruby, CSS, JS and YML (including some plugins and libraries)
350 ActiveRecord ...
0
votes
1answer
26 views
Refactoring database should I use surrogate key?
I inherited an Access database that I'm migrating to SQL Server. In the database there are a lot of labelling or classification columns. For example an order table may have a status attribute, a ...
3
votes
1answer
91 views
How to safely and cleanly rewrite critical/production code? [closed]
I have some critical production routines need to be rewritten from scratch. Take a simple example:
public class ProductionClass {
public IList<Values> WillBeFiredIfThisBreaks(Input input) {
...
-1
votes
5answers
114 views
how to overload two methods with different input parameters
I have these two functions
private void calcResults()
{
MakePath(id, results, _resultCount);
MakePath(id, "XYZ", _resultSICount)
}
private string MakePath(string subFolder, object obj, int ...
1
vote
2answers
48 views
How to extract one generic method from several duplicating code methods like this?
I got 3 classes, all inherited from one base class 'A', so I call them A1, A2, A3. Another 3 class inherited from 'B', called B1, B2, B3.
Now I created 3 methods to do the same work, like this:
...
1
vote
2answers
44 views
Refactoring public methods to another class
I have a C# win form which serves as the GUI for my application. In the form code I've written all the public methods which used by the form events. Now I need to refactor all those public methods to ...
0
votes
2answers
57 views
Using PHP how can I load 1000s of configuration files into a database?
In a folder I have 34,000 configuration files. Each file contains an object that has unique configuration specs. Here is an example of the contents of a file:
$obj = new obj();
$obj->name = ...
3
votes
1answer
88 views
Better pattern for caching results
I'm running a number of times now into a similar pattern which is error-prone (typos can skip some caching) and simply doesn't look nice to me. Is there a better way of writing something like this?
...
0
votes
0answers
50 views
How to refactor link_to_function using unobustrive JS in helper?
I am using link_to_function in one of my ApplicationHelper method:
def link_to_add_fields(name, f, association)
new_object = f.object.class.reflect_on_association(association).klass.new
fields = ...
0
votes
1answer
36 views
Refactoring scanning folder class (add AllwaysPassesBlocker())
I need create a new constructor in FolderScan that takes a list of "Checkers". And all these "Checkers" always return true (schoud write new Chekers List that just return true.)
But problem is that I ...
1
vote
3answers
109 views
refactoring modular structures in D
Here's how I usually develop an application:
I start with having all the code in a single source file.
When it grows enough to be modularised, I break the code into several modules.
When the modules ...
2
votes
2answers
114 views
Eclipse renaming function on projects with dependencies
I have two eclipse project. The second one depends on the first one. When I try to rename a java class of the first project (using the rename function on the java file on the project explorer) it ...
0
votes
1answer
28 views
revert back refactoring step in Eclipse Java project
I was refactored class name in a large java source code in Eclipse. But in a situation where the refactoring produces any undesirable result, I would like to revered back to the previous class name or ...
0
votes
3answers
74 views
Understanding the project with many class and many objects [closed]
If a project (C#, Windows Form, .NET 2.0) is very huge and there are many classes and lot of objects which, in turn, contain many values inside themselves. When I go about debugging line-by-line, ...
3
votes
4answers
109 views
Replace cast by function call in C++
Any recommendations of a tool or method to refactor/replace casts such as:
(type*) data
into:
convert_to_type(data)
Things become trickier when data has higher priority operators, parenthesis or ...
0
votes
1answer
58 views
Clean up SAX Handler
I've made a SAX parser for parsing XML files with a number of different tags. For performance reasons, I chose SAX over DOM. And I'm glad I did because it works fast and good. The only issue I ...
1
vote
1answer
175 views
MS_POSITIONING Is Not a Valid Attribute of Elements BODY and DIv
We have a lot of legacy ASPX pages in our solution. Now we want to fix the code styling (bring it to the HTML5 standard) and generally clean the code on these ASPX pages. One of the issued I ran into ...
0
votes
0answers
79 views
Javascript Tool for detect Nested If statements
<script type="text/javascript">
function validateInput() {
<% foreach (var m in Model.Services.OrderBy(s => s.Service.DisplayIndex)){%>
if ($("#<%: m.Service.Key ...
0
votes
0answers
73 views
Any way to replace cursor in query? [closed]
I have a statement that uses a cursor to calculate time, but is there any possible substitute for the cursor using another method? The cursor is so slow...
SET NOCOUNT ON
Create table #Final_res
...
1
vote
2answers
98 views
Set Properties within base function and call function in child function inheritance
I am trying to refactor some old code and wanted to create more logical inheritance.
We have struct Custom Class which we have separated into (3) levels:
AccountView > Details > Full with ...
0
votes
1answer
149 views
How can I make this JavaScript/CSS random animation code simpler? [closed]
The JavaScript code below generates CSS to set up an animation using random values. The code is complicated and repetitive. How can this code be written more elegantly?
axis=["X","Y","Z"];
...
2
votes
2answers
107 views
How can I add a new route on my existing asp.net-mvc site without a large rewrite?
I have an asp.net-MVC website with a SQL server backend. There are a 100 different tables and this site works for an organization of 300 people.
We now want to use it for another organization and ...






