0
votes
1answer
12 views
How do I disable automatic save after refactoring in Eclipse?
When I ran the Inline and Extract Local Variable refactorings, Eclipse saved my file immediately after. Also, Undoing/Redoing these refactorings resaved the file each time. How can I disable this …
4
votes
2answers
370 views
Anyone tried JustCode?
Have you used JustCode? is it better than resharper? seems like performance better. Do I need to uninstall resharper before using JustCode?
1
vote
2answers
107 views
help me “dry” out this .net XML serialization code
I have a base collection class and a child collection class, each of which are serializable. In a test, I discovered that simply having the child class's ReadXml method call base.ReadXml resulted in …
6
votes
4answers
118 views
Is it reasonable to have a fair amount of public properties in a class?
Or in more specific words, is it "ok" to not be relying on setters and getters?
I'm dealing with a class that checks the availability of rooms and sets public properties of which there are more than …
2
votes
4answers
177 views
Refactoring Fun - Prime Numbers
Hi
From Uncle Bob's book Clean Code (example was in Java, so this was my first java translation), I've been playing with the refactoring example on prime numbers.
The question is: How would you …
8
votes
10answers
246 views
How to validate that a Refactoring is equal to original code.
I'm working with legacy java code, without any Unit-Tests. Many classes need to be refactored in order to work with the project.
Many refactorings can be done with eclipse, and am I doing some by …
4
votes
2answers
67 views
Is there any tool that can analyze the dependencies between variables in c# programs?
There are many tools that we can use to show the dependencies between modules, source code files, classes, or functions etc. But there seems no tool for analyzing the dependencies between variables. …
2
votes
6answers
260 views
Why is this code slower even if the function is inlined?
I have a method like this :
bool MyFunction(int& i)
{
switch(m_step)
{
case 1:
if (AComplexCondition)
{
i = m_i;
return true;
}
case 2:
…
2
votes
1answer
35 views
How to get Resharper to show a Refactoring that it already has.
Whenever Resharper encounters code like this:
(treeListNode.Tag as GridLine).AdvertiserSeparation = 5;
it presents you with a possible fix (since treeListNode.Tag as GridLine might be null). It …
3
votes
3answers
397 views
Automatically refactor a loop into a recursive method?
Do you know a tool that automatically refactors a method with a single loop into a recursive method, preferably in Java?
This is for teaching purposes.
1
vote
4answers
37 views
Porting code that used SimpleXML to Dom in PHP
I have a class that extends PDO to give it the ability to pull the configuration from an xml file. Unfortunately the our hosting provider has disabled SimpleXML so I need to refactor my code to use …
1
vote
3answers
120 views
Change classes in Java
Hello Folks
I have a class ImageA, and a class ImageB. The both classes represents an image in my app, but each one in a different way. Even being different, their constructors are equal, and both …
8
votes
4answers
99 views
Is there a tool for refactoring SQL, a bit like a ReSharper for SQL
The sort of stuff I'm after right now is quite basic:
Auto format
Detect ununsed variables
Variable naming convention checking
I wouldn't be surprised if there was a tool available that could …
3
votes
2answers
58 views
Rails: Refactoring, views, helpers: how does it all go together?
Warning: Noob here.
I know this is a trivial subject but I'm having a lot of difficulty in figuring out how exactly I can simplify my views by moving parts of them into helpers. For example, I've …
5
votes
4answers
101 views
Refactor for Speed: Convert To a Date
Hello, I work for myself, I am a self-employed coder and as a result I don't have the luxury of code reviews or the ability to improve based upon peer programming. I am going to use this as an …
