Hi there,
possibly a silly question: how can I convince Netbeans 21 to format like as 
following:

        try (InputStream propStream = 
getClass().getResourceAsStream("/test.properties");
                InputStream srcStream = new 
FileInputStream(props.getProperty("test.csv.src"));
                FileOutputStream dstStream = new 
FileOutputStream(props.getProperty("test.csv.dst"))) {

e.g. one variable per line, while it keeps rearranging as:

        try (InputStream propStream = 
getClass().getResourceAsStream("/test.properties"); InputStream srcStream =
                new FileInputStream(props.getProperty("test.csv.src")); 
FileOutputStream dstStream =
                new FileOutputStream(props.getProperty("test.csv.dst"))) {

?

TIA
Regards.

--
Francesco Chicchiriccò

Tirasa - Open Source Excellence
http://www.tirasa.net/

Member at The Apache Software Foundation
Syncope, Cocoon, Olingo, CXF, OpenJPA, PonyMail
http://home.apache.org/~ilgrosso/


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to