Right now Jalopy formats variable-defs in the following
form:
private final String cleanManuf;
private final String cleanName;
private final String manuf;
private final String name;
whereas I prefer:
final private String
cleanManuf
cleanName,
manuf,
name;
IHMO this has the advantages:
- the variable types stand clearly out
- I have to read the type just once for a whole bunch of
vars.
Is it already possible to change the behaviour of jalopy in
this respect ? (I couldn't find a way)
If not, I would like to see such a feature added.
Thanks
Martin Jost