1
vote
3answers
85 views
Refactoring function pointers to some form of templating
Bear with me as I dump the following simplified code: (I will describe the problem below.)
class CMyClass
{
...
private:
HRESULT ReadAlpha(PROPVARIANT* pPropVariant, SomeLib: …
0
votes
2answers
64 views
Using Exceptions exceptionally
Hi guys,
This is a refactoring question.
try
{
string line = GetFirstLineFromFile(); //Gets first line from a text file, this line would be a number.
int value = ConvertToInt …
2
votes
3answers
112 views
How would you refactor this bit of code?
This bit of code runs on Windows Compact Framework and what it does is obvious. It looks as it should be refactored (especially considering that I may want to add cmd.ExecuteResult …
2
votes
5answers
61 views
How to avoid debugger-only variables?
I commonly place into variables values that are only used once after assignment. I do this to make debugging more convenient later, as I'm able to hover the value on the one line …
3
votes
10answers
286 views
Are empty abstract classes a bad practice, and why?
We have several empty abstract class in our codebase. I find that ugly. But besides this very stupid reason (ugliness), should I refactor it (into empty interface e.g.) ?
Otherwis …
3
votes
4answers
40 views
Does form processing code need to be abstracted? (Zend_Form)
In Zend Frameworks tutorials, I can see form processing code like
if ($request->isPost()) {
$formData = $request->getPost();
$code = $request->ge …
2
votes
2answers
114 views
Java Null Conditional
I have the following pattern appearing many times in my Java code and was wondering how some of you might refactor it.
Object obj1 = buildObj1();
if (obj1 != null) {
return ob …
1
vote
2answers
73 views
Refactoring some of my code
I have a SalesOrder class which is inherited by several different types of sales orders. It has a method called ValidateItems(OrderItemList, itemAdditionalValidation), which takes …
4
votes
5answers
201 views
Help refactoring this nasty Ruby if/else statement
So I have this big, hairy if/else statement. I pass a tracking number to it, and then it determines what type of tracking number it is.
How can I simplify this thing? Specifically …
1
vote
4answers
67 views
Recoding a Podcast Website - What should I use?
OK here is the deal. Me and some buddies are doing a Podcast(for over 4 year now) and in April we relaunched the site, that included a new Backend. Since I only had 2 weeks back th …
3
votes
4answers
85 views
Writing refactoring-friendly PHP code
As far as I know, and have gathered from other SO posts, there are no proper tools for refactoring PHP code yet, so when it comes to refactoring, it's probably good old search-and- …
0
votes
0answers
16 views
Error in Preview of Custom Eclipse refactoring
I am implementing an new eclipse refactoring. This will enable developers to Pull-up the preconditions statements from a child method to the parent method.
This all works perfe …
2
votes
6answers
144 views
“refactor refactor refactor your code.” What does this mean exactly and why do it ?
I often heard from professionals blog something like refactoring your code whenever the chance you get. What is it exactly? Rewriting your code in simpler and fewer lines? What is …
2
votes
5answers
157 views
Refactoring function calls while reducing code duplication of resulting class definitions
I have a header file with about 400 function declarations and its corresponding source file with the definitions.
In order to replace the implementation with a mock at runtime, I …
0
votes
1answer
18 views
How do I do distributed UML development (à la FOSS)?
I have a UML project (built in IBM's Rational System Architect/Modeler, so stored in their XML format) that has grown quite large. Additionally, it now contains several pieces that …
