Skip to content

Files

Latest commit

 

History

History
21 lines (12 loc) · 544 Bytes

SpaceAfterMethodCallName.md

File metadata and controls

21 lines (12 loc) · 544 Bytes

Pattern: Use of space after method name

Issue: -

Description

Checks that there is no whitespace after the method name when a method call contains parenthesis or that there is at most one space after the method name if the call does not contain parenthesis.

Examples

aMethod ("arg") //violation

aMethod  "arg" //violation

throw new Exception () //violation

Further Reading