MarekChr
MarekChr

Reputation: 1160

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

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.

Upvotes: 1

Views: 37

Answers (0)

Related Questions