Excessive "wiring", where some idiot developer got so jazzed about eliminating "dependencies" that none of the classes actually refer to each other, and everything is hooked together in an enormous XML file.
Reading the code, you can't actually tell how anything works anymore, because the ordinary flow of logic is obfuscated until runtime, when all the functionality is magically woven together by some over-architected framework.
Yeah, sure, you can ALT-TAB back and forth between the code and the XML and try to remember how all the classes are wired together.
But first, you should walk down the hall and punch that jackass in the teeth.
ON EDIT:
Incidentally, I'm familiar with the DI and IoC patterns, and I'm perfectly happy to admit that they're occasionally useful. In fact, if I may be so bold as to quote Martin Fowler:
Inversion of control is a common
feature of frameworks, but it's
something that comes at a price. It
tends to be hard to understand and
leads to problems when you are trying
to debug. So on the whole I prefer to
avoid it unless I need it. This isn't
to say it's a bad thing, just that I
think it needs to justify itself over
the more straightforward alternative.
http://martinfowler.com/articles/injection.html
There have been certain (rare) cases when I've happily used DI. But only under these circumstances:
When you actually have multiple implementations of a service, AND
When the selection of those services must be applied at configuration time (not at compile time or runtime)
In my experience, this combination is extremely rare. Most projects I've been involved with have exactly zero justification for the injection of any dependencies. Sometimes there's a legitimate need, and yeah, in those cases DI is a lifesaver, because there's really no other way to do it.
But I can't tell you how often I've worked on a project with hundreds of service interfaces, each of which has one class implementing that interface. And then there's a configuration file with thousands of lines of XML to connect each service interface with its implementation and to inject constructors into every single private field.
It's madness!!