Documentation comment parameter section is redundant

Documentation comment for method without parameters should not have parameter section and should be removed.

Noncompliant Code Example

// Parameters:
//  Parameters - Method should not have parameter section
Procedure NonComplaint()
	// empty
EndProcedure

Compliant Solution

// Method without parameters should not have such section
Procedure Complaint()
	// empty
EndProcedure

See