In computer programming, code smell is any symptom in the source code of a program that possibly indicates a deeper problem.
0
votes
0answers
10 views
Is “Data class” really a code smell?
Fowler's book Refactoring lists "Data Class" as a code smell. Yet when unit testing a method, passing in value objects, e.g. data transfer objects, make testing much easier than trying to set up or ...
1
vote
0answers
39 views
Avoid empty interfaces and classes vs. easy code and readability
I am working on a hobby-project of mine and am in a bit of a dead-end. Let me explain the situation and how I came to my dead end
I am trying to create a complex questionnaire system to help my ...
3
votes
1answer
77 views
Is this a switch statement smell?
I am looking through someone's C code, and discovered something I didn't even know was possible. Inside some of the cases, the switch variable is modified, with the intention that another case is ...
0
votes
0answers
25 views
Is there a name for CSS code smell that can be seen in class names like “float” or “white”? [migrated]
I noticed some code in our projects using CSS class names such as red, black or float.
I want to provide some information for people so they know to avoid it.
Is there a common name for that code ...
1
vote
2answers
45 views
Temporal Coupling vs Unit of Work
So, as has been pointed out to me (and I entirely agree), temporal coupling is a design smell, and generally comes in the form:
interface IDoSomething
{
void Initialise();
void ...
3
votes
2answers
109 views
Elegant ways to extract element values from Either[String,Option[NodeSeq]]
Lets say I am given an XML as follows:
<a><b><c>hello</c><d>world</d><e>again</e></b></a>
I am given a function: getXmlStream which has ...
0
votes
4answers
71 views
Stop jQuery chaining in an elegant way
First, I'm a bit confused that I can't find the answer at once on SO. The question is about the codestyle.
Consider an example:
$('input[type=text]').on('click', doSomething);
What happens if ...
0
votes
4answers
108 views
Is use of delegate parameters a bad code smell? [closed]
This is a contrived example:
public class Item : IFoobar
{
public int State { get; set; }
public void ChangeState()
{
State++;
}
public ...
2
votes
3answers
177 views
Are long Blocks a code smell? [closed]
Lots of modern Objective-C APIs use blocks extensively. For example, we often write things like this:
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context){
...do some animations
...
0
votes
1answer
74 views
If function/method overloading is a code smell, how can I avoid ridiculous method names?
Imagine I have an arbitrary programming language that provides the following function:
string joinString(list<object> itemsToBeJoined, string separator) ...
Now I want to add another method ...
1
vote
1answer
146 views
PMD rules: How to properly solve this DD-anomaly issue
I have the following android code:
public final List<MyObj> getList() {
Cursor cursor = null;
try {
final String queryStr = GET_LIST_STATEMENT;
cursor = ...
0
votes
1answer
52 views
PHP_CodeSniffer - Multiple Statement Alignment fails when using tabs
I have some code which is indented using tabs, but this then fails the Generic.Formatting.MultipleStatementAlignment.NotSameWarning sniff. Our command line does have the --tab-width setting enabled.
...
4
votes
6answers
96 views
Unit test class style
When writing unit tests, I always extends Assert, so I have unqualified access to the many calls to the many Assert.assertXXX methods:
For example:
public class MyTestClass extends Assert {
...
0
votes
1answer
160 views
Is there any tool to detect JAVA code smells or antipatterns [closed]
I was wonder if there is any tool to give it some files and it returns the code smells that file has
0
votes
0answers
107 views
Codeigniter program logic cleaning up messy functions
The program does time and attendance per project for a small factor. Here’s what it’s supposed to do:
On page / controller index.php/employeeselect
The user their project and name and clocks in. The ...
1
vote
1answer
82 views
Is there a name for the code smell that calls for 'extract superclass' refactoring? [closed]
Is there a specific name for this pattern?
One form of duplicate code is two classes that do similar things in the same way or similar things in different ways. Objects provide a built-in ...
1
vote
2answers
48 views
Adding dependency to class only because another [child] dependency needs it - Design Smell?
I am noticing occasions where I need to add dependencies to parent classes, and their parents and so on, only because a child class needs it. Is this a code smell? Is it reasonable for a parent class ...
1
vote
1answer
133 views
Is there a common name for this code smell?
I refer to it as the "delivery boy". I've seen several variants of it but the issue is that a class has dependency for the sole purpose of passing it on to collaborators and never using the dependency ...
0
votes
0answers
21 views
Exactly how improper is it to inherit from a class solely for aliasing and how do I measure such thing?
Good afternoon everyone!
I've been wondering about the title question for a while, and how to measure it.
There's this legacy code on a project of mine which includes about two dozen super ...
3
votes
2answers
160 views
Avoiding Primitive Obsession when using EventSourcing
I've been building a small game as a learning exercise into building an application using Event Sourcing as the persistence mechanism.
One issue I'm having trouble with at the moment is a good deal ...
0
votes
1answer
90 views
Implicit Fall-through: Code smell or elegant design?
I have a case where I'm defining a function in JavaScript which has some default parameters. There are numerous ways of writing the same simple code, however I realized that it seemed to be a ...
1
vote
2answers
109 views
Valid HTML or clean code?
Perfectly valid HTML is good, not only because it's better for browsers, but because failure to pass validation may be the sign that there's something else wrong with the code. Therefore, I try my ...
3
votes
3answers
222 views
Useless overriding: Just nonsense / code smell, or more evil?
We just found the following lines of Java code,
@Override
public String toString() {
return super.toString();
}
and started pondering. Is it just boring senseless code smell, or does it even ...
0
votes
1answer
176 views
Backbone js code smell - better way to embed a sub-view?
I'm building a backbone app using backbone-relational models (but that shouldn't matter for this question).
Basically, I have an edit button that will display a hidden div. Inside the hidden div id a ...
1
vote
1answer
34 views
Allowing for more then one “no-value” value in value space
I use a string type for my Id attribute on all my domain abjects. E.g.:
public class Person {
property string Id { get; set; }
// ... more properties
}
no tricks here. null represents a ...
2
votes
1answer
1k views
The “correct” way of using multilingual support
I just began working with ASP.NET and I'm trying to bring with me some coding standards I find healthy. Among such standards there is the multilingual support and the use of resources for easily ...
0
votes
0answers
161 views
is there a name for the code smell of adjusting an event parameter?
I was looking at (Java) code that implemented an event listener. It mutates a parameter describing the event callback data. I think this is really, really smelly, but what would be the "official" name ...
2
votes
2answers
157 views
Busy constructors in Ioc - are they a code smell?
I have ended up with a constructor that looks like this whilst attempting to end up with an object i can easily test.
public UserProvider(
IFactory<IContainer> containerFactory,
...
1
vote
2answers
321 views
Try/Catch/Finally, use exception from Catch in Finally?
I've looked at a few other try catch finally questions on here but I'm not sure that this one has been answered. Does it smell bad to do something like:
Exception? ex = null;
try { //something }
...
1
vote
1answer
114 views
Can *Manager classes uphold their existence in some cases?
I've recently read that calling classes *Manager is a bad thing due to their not exact name and a possibility that they might become god objects.
However, is it a good practice to provide 'Manager' as ...
1
vote
2answers
260 views
Making Hard-coded -dimensions with relative values reusable with area -map?
1. Trial: Areas measured by graphic designers -- needs to be reused with different width-height (notice the bad T2)
<img style="width: 500px; height:500px"
usemap="#world"
...
-3
votes
2answers
175 views
Replacing hard-coded Textarea with something clearer? Separating Styles and Logic?
CODE-SMELL
<textarea rows=3 id="help">ask:
bsd:
vim:
...
</textarea>
WANT SIMPLICITY LIKE
<textarea src="./Data/help"></textarea>
$ cat ./Data/help
ask:
bsd:
vim:
How ...
1
vote
2answers
302 views
Adding global functionality to Activity, ListActivity, TabActivity etc
In a few apps I've come across situations where I've needed to add global functionality to all or most of the Activities in an app (i.e. add a item in the options menu for to launch the preferences ...
5
votes
5answers
79 views
Should I keep variables used only in one class method local or declare them as class properties?
I've been wondering if a class property is instantiated and used only in one class method should it be a class property at all or should it just be a local variable accessible to that class method ...
1
vote
5answers
841 views
iOS — distinguish an NSDictionary from an NSMutableDictionary?
I have the following code fragment:
NSString* value = @"value";
NSString* key = @"key";
NSMutableDictionary* foo = [NSMutableDictionary dictionary];
NSDictionary* bar = [NSDictionary dictionary];
...
2
votes
1answer
95 views
Is determining state based on type checks a code smell?
I'm working on a design of an object that changes its behavior based on its state. One if its properties holds an object that can be of various types. Here's an example:
class Person {
// many ...
1
vote
2answers
230 views
MVC global error handling pattern code smells
public ActionResult Foo(int id)
{
if (someCheckFails)
{
Log.Error(new SomeTypeOfException());
return View("SomeErrorView");
}
return View();
}
The above code logs an ...
1
vote
2answers
148 views
WCF WebApi, what is the correct way to handle IsThisTaken query?
I am in the process of writing a WCF webapi application and have a need to check whether an email address is taken or not. This needs to be a query the client-side code can do before attempting a PUT.
...
1
vote
1answer
68 views
Is JAXB code generation a code smell?
Our Java project uses JAXB to generate some code, which we could do without I think. I prefer to use serialization. Would you say it's a code smell?
1
vote
2answers
130 views
Refactoring Switching On Types Code Smell When Adding Method to Type Seems Inappropriate
Let's say I have the following method that, given a PaymentType, sends an appropriate payment request to each facility from which the payment needs to be withdrawn:
public void ...
5
votes
5answers
178 views
C#: better way than to combine StartsWith and two ToUpperInvariant calls
Somewhere in the back of my head a tiny voice is telling me "the C# code below smells".
private const string STR_ConnectionString = "ConnectionString";
private readonly string ...
0
votes
3answers
100 views
Could Generics Be Of Use?
I have the following code at least 10 different times in my code. Seems kind of smelly to me.
public void DisplayTransitInfo(TransitInfo transitInfo)
{
if (InvokeRequired)
...
-4
votes
2answers
127 views
What is the best way to manage the switching of groups of variables?
An example using the Conditional Operator.
void setSelected( bool selected )
{
a = selected? SELECTED_VALUE_A: DEFAULT_VALUE_A;
b = selected? SELECTED_VALUE_B: DEFAULT_VALUE_B;
c = ...
1
vote
1answer
106 views
What is the most Pythonic way to handle variant means of doing the same thing?
I am working on a Django 1.3 based user registration system with some unusual validation requirements. I am using the current branch of django-registration as my starting point.
I must send a user ...
3
votes
1answer
121 views
Anti-pattern: Superfluous else branch containing guard clause/error handling
Often you see some code like this:
public void bla()
{
if (conditionTrue)
{
// long code here
} else {
// otherwise do nothing
return;
}
// some more code
}
The else branch ...
12
votes
5answers
277 views
I'm using too many dictionaries within dictionaries in my code, is that a code smell?
I'm using a lot of dictionary collections that contain other dictionary collections like:
Dictionary<Guid, List<string>>()
Dictionary<Guid, Dictionary<Guid, ...
0
votes
1answer
136 views
Does this class count under “Middle Man” code smell?
Does this class count under "Middle Man" code smell?
I have a "Person" class. I have one more class Person List which has a list of Person_list and has methods to add, remove and to do few other ...
0
votes
1answer
49 views
Can I do this with the decorator pattern?
I have a few decorator classes that have references to 3 different objects. Based on the attributes of the 3 objects, I am going to modify the object that is being decorated on. Since most examples ...
2
votes
1answer
102 views
State pattern, but controlled from 2 different places
I have a class that controls what the user sees on the page. There are a couple of states. The first set of views are controlled by the user object and that object controls the items below.
- ...
9
votes
15answers
998 views
Is an Initialize method a code smell?
I'm coding a bunch of systems right now. They do not derive from a common interface.
Some example systems: MusicSystem, PhysicsSystem, InputSystem, et cetera.
Currently, MusicSystem loads a lot of ...


