Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for RedundantModifier (0.19 seconds)

  1. build-tools-internal/src/main/resources/checkstyle_suppressions.xml

      <!-- the constructors on some local classes in these tests must be public-->
      <suppress files="server[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]plugins[/\\]PluginsServiceTests.java" checks="RedundantModifier" />
    
      <!-- Intentionally doesn't have a package declaration to test logging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/resources/checkstyle.xml

        <!-- Checks that we don't include modifier where they are implied. For
          example, this does not allow interface methods to be declared public
          because they are *always* public. -->
        <module name="RedundantModifier" />
        <!-- Checks that all java files have a package declaration and that it
          lines up with the directory structure. -->
        <module name="PackageDeclaration" />
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 12:48:46 GMT 2021
    - 6K bytes
    - Click Count (0)
Back to Top