All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.checkstyle.rules.checkstyle.com.puppycrawl.tools.checkstyle.checks.whitespace.GenericWhitespaceCheck.html Maven / Gradle / Ivy

Go to download

Checkstyle is a code analyser to help programmers write Java code that adheres to a coding standard.

There is a newer version: 3.3.2
Show newest version

Checks that the whitespace around the Generic tokens < and > is correct to the typical convention. The convention is not configurable.

For example the following is legal:

  List x = new ArrayList();
  List> y = new ArrayList>();

But the following example is not:

  List < Integer > x = new ArrayList < Integer > ();
  List < List < Integer > > y = new ArrayList < List < Integer > > ();




© 2015 - 2024 Weber Informatics LLC | Privacy Policy