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?
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?