4
votes
6answers
137 views
Null pointers everywhere because data is suddenly sparse.
Someone designed code that relied on full data; the XML always had every element. The data source is now sending sparse XML; if it would have been empty before, it's missing now. …
3
votes
12answers
189 views
How can I improve this Comparator?
I've got a few Comparators -- one for Dates, one for decimals, one for percentages, etc.
At first my decimal comparator looked like this:
class NumericComparator implements Compa …
3
votes
6answers
75 views
When Refactoring a project to improve maintainability, what are some of the things to target?
I've got a project (about 80K LOC) that I'm working on, and I've got nearly a full month of luxury refactoring and feature adding time prior to release so long as I'm careful not t …
1
vote
4answers
152 views
How can I remove repeated code in my actions?
I have the following code repeated several times in a mvc app.
public ActionResult AnAction(int Id)
{
var claim = GetClaim(Id);
if (claim == nul …
0
votes
2answers
34 views
‘Remove middleman’ IntelliJ refactoring on an empty interface
I have an interface which is now empty, and extends another interface. I'd like to remove the empty interface and use the base interface, and am trying to find the correct refactor …
1
vote
7answers
181 views
C# - Casting an ‘object’ parameter into that object’s type?
C#
Hi all,
I pass an object to a method.
I want to cast that object to its specific class so I can perform its own specific methods? How can I do that?
Move( new Cat() );
Move( …
2
votes
4answers
93 views
How to call overrided methods in a subclass? Potential candidate for refactoring
Originally I had a design problem where I needed five subclasses of a superclass, where all but two would use the same generic method of doing things and the other two classes woul …
0
votes
1answer
34 views
Does any one know of any APEX refactoring tools?
The company that owns the company that I work for has recently decided unilaterally that the salesforce.com and force.com platform are where we are headed. Currently, we're a C# .N …
6
votes
10answers
171 views
Refactor method with multiple return points
**EDIT: There are several options below that would work. Please vote/comment according to your views on the matter.
I'm working on cleaning up and adding functionality to a c# m …
3
votes
9answers
218 views
How do you write these loops in a nicer way in Java?
I have a set of objects I'd like to do some operations on, in the order they're iterated. After that operation gets called on them, I'd like to perform other operations on them. Ba …
6
votes
4answers
112 views
How can I identify and remove redundant code in Perl?
I have a Perl codebase, and there are a lot of redundant functions and they are spread across many files.
Is there a convenient way to identify those redundant functions in the c …
0
votes
2answers
92 views
How to convert a PHP function to a non-function?
How can I convert the php function in the code below to a non-function.
<?php
require_once ('./mysqli_connect.php'); // Connect to the db.
function make_list ($parent)
{
g …
2
votes
3answers
57 views
Is it possible in C# to access an object’s fields using field names generated at runtime
Here is what I mean:
I need to be able to substitute this ugly looking C# code:
if (attribute.Name == "Name") machinePool.Name = attribute.Value;
else if (attribute.Name == "Capa …
2
votes
2answers
85 views
Create a deep object graph with Linq to XML, refactoring?
I am writing a simple XML file parser using LINQ to XML.
I want to have a TreeNode object (i.e a simple Tree structure) for each element in the XML. I want each element to be str …
1
vote
6answers
80 views
Mapping switch statements to data classes
This seems to come up alot in my code, i'm wondering if there is some way of removing the switch statement, or if there is a more elegant way of doing it?
public class MetaDat …
