Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
319 views

How do I correct feature envy in this case?

I have some code that looks like: class Parent { private Intermediate intermediateContainer; public Intermediate getIntermediate(); } class Intermediate { private Child child; public Child ...
3
votes
1answer
251 views

Any way to reconcile Feature Envy with Long Parameter List?

I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the DomainObject's way to ...
2
votes
1answer
169 views

Is there a Bazaar equivalent of Git default branching?

Using git, I can create branches conceptually, without having to branch my directory structure. When I switch between branches (assuming that everything has been committed), it will change the ...
0
votes
1answer
625 views

Why does Eclipse complain about “Feature envy” smell in my code?

Eclipse (RedRails) complain about "Feature envy" in the following code: if input_text =~ /^(---\s*\n.*?\n?)(---.*?)/m content_text = input_text[($1.size + $2.size)..-1] # warning in $1 header = ...