views:

27

answers:

1

Whenever I run the IntelliJ autoformatter - it converts this:

@Autowired private CustomerDao customerDao;

into this:

@Autowired 
private CustomerDao customerDao;

How can I stop it from doing that?

+2  A: 

See the screen with the appropriate settings:

alt text

CrazyCoder
spot on! thanks for the screenshot too.
Daniel Alexiuc

related questions