Class AppendCharacterWithCharRule

All Implemented Interfaces:
AstVisitor, JavaVisitor, Rule, PropertySource

public class AppendCharacterWithCharRule extends AbstractJavaRulechainRule
This rule finds the following:
 StringBuffer.append("c"); // appends a single character
 

It is preferable to use

StringBuffer.append('c'); // appends a single character
See Also:
  • Constructor Details

    • AppendCharacterWithCharRule

      public AppendCharacterWithCharRule()
  • Method Details