Tagged Questions

1
vote
3answers
160 views

How can this 6 line method be refactored to be more readable?

Hi everyone, I'm trying to clean up this ridonkulously ugly method here, that's crying out for refactoring, but I'm not sure what kind of structure would do this best (i.e. a case …
1
vote
4answers
161 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
4answers
60 views

Risks associated with changing from default package in Java?

I have an existing code base that is not packaged at all. The code base is all minor Java programs designed to extend/enhance the functionality of a third party program. The curre …
4
votes
3answers
190 views

Java: DRY out these two functions

These two functions have basically the same code. How can I factor it out? public static String[] removeSuffix(String gA, String gB) { String[] results = new String[2]; …
3
votes
3answers
238 views

Speed boost to adjacency matrix

I currently have an algorithm that operates on an adjacency matrix of size n by m. In my algorithm, I need to zero out entire rows or columns at a time. My implementation is curren …
3
votes
3answers
60 views

Javascript ‘property inheritance’

Is there a way to specify common elements for object literals in an array? For example: var array = [ {key: "hi", label: "Hi", formatter:deleteCheckboxFormatter}, { …
1
vote
2answers
76 views

How to best utilize jQuery to programmatically generate HTML elements

I have a bunch of Javascript functions that look like the following: function generateBusinessImage (business) { var business_image = document.createElement('img'); business_i …
1
vote
2answers
95 views

Can we make this snippet groovier?

Hey, are there any improvements where i can improve this code? Maybe there are some groovy language features? This snippet flattens a xml file to: node/node/node def root = new …
1
vote
3answers
167 views

Refactoring List<Foo> to FooList

I have a number of collections of classes which I need to refactor into new classes. I'm using Java with either Eclipse or Netbeans. Currently I create the new class FooList with a …
0
votes
1answer
50 views

Excract JPanel into new class in NetBeans

This is similar to this question, except the code is already written. I have JFrame JTabbedPane JPanel X <...> JPanel Y <...> JPanel Z …
3
votes
14answers
690 views

Is excessive use of this in C++ a code smell

I'm dealing with a large code base that uses the following construct throughout class MyClass { public: void f(int x); private: int x; }; void MyClass::f(int x) { ' ' this …
0
votes
1answer
50 views

MS Access - Query Refactoring Assistance

I have a page in one of my client's websites that generates an extensive report pulling data from numerous tables throughout the website's MS Access database. One of the unfortunat …
2
votes
4answers
319 views

How to make this method non-recursive?

Hey. This example is pretty specific but I think it could apply to a broad range of functions. It's taken from some online programming contest. There is a game with a simple winni …
4
votes
13answers
283 views

Daunting task of refactoring 5000 line CSS. Any tips?

I've just been assigned the task to refactor a huge 5000 line CSS file... but here's the worst part - I also need to make it IE6 compatible. Any CSS gurus have suggestions of tools …
0
votes
1answer
56 views

Keyboard Shortcut for Smart Tag in Refactor!

I am trying to get Refactor! for ASP.NET, CodeRush Xpress and Resharper play together. I installed Resharper, then CodeRush Xpress and then Refactor! for ASP.NET. I can't seem to …

1 2 3 next
15 30 50 per page