How to disable inserting '*' at start of new line when formatting block comment in Eclipse?

45 Views Asked by At

Original:

/* NOT THESE
private String deathPlace;
private String birthPlace;  
private LocalDate birthDate;    
private String notes;
*/

Unwanted result:

/*
* NOT THESE private String deathPlace; private String birthPlace; private
* LocalDate birthDate; private String notes;
*/

Is there a way of disabling '*' at start of new line? I guess its javadoc standard thing, but it gets annoying when i want to uncomment.

0

There are 0 best solutions below