4
votes
8answers
120 views
Refactoring a working project
Let's say you got a project that is really poorly written, contains lots of code smells, wtfs, etc. Moreover, its code structure is so complicated that it is extremely hard to add any new …
0
votes
3answers
48 views
Pull-up refactoring, Objective-C
I have two similar classes, MultiSlotBlock and SingleSlotBlock. They have started to share a lot of common code so I have decided to do some refactoring and pull some of the methods up to a new …
0
votes
1answer
32 views
How should I organise my functions with pyparsing?
I am parsing a file with python and pyparsing (it's the report file for PSAT in Matlab but that isn't important). here is what I have so far. I think it's a mess and would like some advice on how to …
1
vote
3answers
56 views
PHP code validation when refactoring
As a developer that's used to static typing I usually let the compiler tell me if the code is correct, logic flaws excluded of course. But when refactoring PHP I find it is VERY hard to know that my …
2
votes
2answers
100 views
Void, value, or other?
Hi, all.
I'm working on a spaghetti monster (unfortunately not of the flying variety), and I've got a question about proper design.
I'm in the process of taking a gigantic static Java method that …
1
vote
1answer
34 views
Automatically Refactor Access Modifiers
Is there a tool that can run through a visual studio solution and adjust access modifiers to anything not being called in the solution is converted to private or internal where applicable?
I suppose …
0
votes
0answers
19 views
Please help me refactor these two Storyboards
I have these Storyboards somewhere in my Resources:
<Storyboard x:Key="FadingIn">
<DoubleAnimation Storyboard.TargetProperty="Opacity"
…
1
vote
2answers
18 views
use EventObject.getSource in Actionlistener
Hi, I am refactoring some code for an assignment - currently the view has lots of buttons and menus and one action listener which decides what to do by using event.getSource(). From what I've read …
1
vote
13answers
186 views
Long code blocks inside if statements or for loops
This is a cross language question on coding style.
I have to work with a lot of code that has very long code blocks, sometimes hundreds of lines, inside if statements or for loops. The code is …
0
votes
4answers
133 views
Refactoring a method containing conditional with extremely different code blocks that are the same ;)
So I have this stinky method, the two conditional blocks do almost the exact same thing, but with radically different parameters (at least in my eyes). I want to clean it Uncle Bob style, but can't …
1
vote
1answer
48 views
How do I get a list of event handlers with nonstandard names in my code?
I'm in the middle of performing a large refactoring which will involve renaming a lot of events. This will leave our code with a lot of code like this:
thing.NewEventName += thing_OldEventName;
…
0
votes
3answers
38 views
Refactoring exceptions for workflow
I am currently refactoring an application which uses exceptions for logic flow. The code is difficult to read and maintain and makes a S.O.L.I.D fanboy like myself cry when reading it (not to mention …
1
vote
1answer
38 views
How can I simplify this ocaml pattern-matching code?
I'm writing a simple little ocaml program that reads an algebraic statement in from a file, parses it into an AST using ocamllex/ocamlyacc, reduces it, and then prints it. The part where I'm reducing …
0
votes
2answers
48 views
Rails XML Builder - Code refactoring
I have written the following code in my Rails app to generate XML. I am using Aptana IDE to do Rails development and the IDE shows a warning that the code structure is identical in both the blocks. …
1
vote
4answers
99 views
Strategies for multithreaded application
I might inherit a somewhat complex multithreaded application, which currently has several files with 2+k loc, lots of global variables accessed from everywhere and other practices that I would …
