show/hide this revision's text 3 added 95 characters in body

OK, I'm not looking for anti-patterns - I'm looking for things that aren't really patterns, or perhaps patterns that have been abused.

My personal least favourite is the "Helper" pattern.

E.g. I need to create a SQL query, so call SQLQueryHelper. This needs to process some strings, so it in turn calls StringHelper. Etc., etc.

See - this isn't really a design pattern at all...

[edit] Don't you people who vote this down think you should add a constructive remark?

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Least favourite design pattern

OK, I'm not looking for anti-patterns - I'm looking for things that aren't really patterns, or perhaps patterns that have been abused.

My personal least favourite is the "Helper" pattern.

E.g. I need to create a SQL query, so call SQLQueryHelper. This needs to process some strings, so it in turn calls StringHelper. Etc., etc.

See - this isn't really a design pattern at all...