Java allows the use of several variables declaration of the same type on one line. However, it can lead to quite messy code. This rule looks for several declarations on the same line. Example:
String name; // separate declarations String lastname; String name, lastname; // combined declaration, a violation
This rule is deprecated, use {rule:squid:S00122} instead.