Hello folks,
currently I am involved in a complex
Java project. For me this mean, fighting through a huge bunch of classes written by several programmers. The software itself lacks performance heavily.
Beside architectural problems I see excessive use of import wildcards like
instead of
.
I know that this is far away from beeing good coding style but does it lead to reduced performance at runtime, too? Any ideas?
H.-Gerd