I am styling some Java code with astyle.
This is the output after being styled with the Java style and mode:
KafkaProducer<String, String> producer = new
KafkaProducer<String, String>(
props);
I don't want the second line of the creation to not have any indentation. It should have the same indentation as the props line like so:
KafkaProducer<String, String> producer = new
KafkaProducer<String, String>(
props);
Thanks.
Improved but not 100 fixed as all lines will be indented in 3.4.6