Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for MissingOverride (0.07 seconds)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            </module>
            <module name="MethodTypeParameterName">
                <property name="format" value="^([A-Z][a-z]*)+$"/>
            </module>
    
            <!-- Annotations -->
            <module name="MissingOverride"/>
    
            <!-- allows suppressing using the //CHECKSTYLE:ON //CHECKSTYLE:OFF -->
            <module name="SuppressionCommentFilter"/>
            <!-- to enable SuppressWarningsFilter -->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 11 10:24:25 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * {@inheritDoc}
       *
       * @since NEXT. Note, however, that Java 19+ users can call this method with any version of Guava.
       */
      @SuppressWarnings("MissingOverride") // not an override under J2CL
      @ParametricNullness
      public V resultNow() {
        Object localValue = value();
        if (localValue == null | localValue instanceof DelegatingToFuture) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 14:39:00 GMT 2026
    - 43.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

      /** Returns a matcher that matches any character not matched by this matcher. */
      // This is not an override in java7, where Guava's Predicate does not extend the JDK's Predicate.
      @SuppressWarnings("MissingOverride")
      public CharMatcher negate() {
        return new Negated(this);
      }
    
      /**
       * Returns a matcher that matches any character matched by both this matcher and {@code other}.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  4. guava/src/com/google/common/base/CharMatcher.java

      /** Returns a matcher that matches any character not matched by this matcher. */
      // This is not an override in java7, where Guava's Predicate does not extend the JDK's Predicate.
      @SuppressWarnings("MissingOverride")
      public CharMatcher negate() {
        return new Negated(this);
      }
    
      /**
       * Returns a matcher that matches any character matched by both this matcher and {@code other}.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
Back to Top