Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for InlineMeSuggester (0.06 seconds)

  1. android/guava/src/com/google/common/base/Objects.java

       * equals()} contract.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated; use {@link
       * java.util.Objects#equals} instead.
       */
      @SuppressWarnings("InlineMeSuggester") // would introduce fully qualified references to Objects
      public static boolean equal(@Nullable Object a, @Nullable Object b) {
        return java.util.Objects.equals(a, b);
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Jul 28 22:51:26 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionError.java

       *     calling {@link #initCause} later, so it is not quite equivalent to using a constructor that
       *     omits the cause.
       */
      @SuppressWarnings("InlineMeSuggester") // b/387265535
      @Deprecated
      protected ExecutionError(@Nullable String message) {
        super(message);
      }
    
      /**
       * Creates a new instance with the given detail message and cause. Prefer to provide a
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

       *     calling {@link #initCause} later, so it is not quite equivalent to using a constructor that
       *     omits the cause.
       */
      @SuppressWarnings("InlineMeSuggester") // b/387265535
      @Deprecated
      protected ExecutionError(@Nullable String message) {
        super(message);
      }
    
      /**
       * Creates a new instance with the given detail message and cause. Prefer to provide a
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 4K bytes
    - Click Count (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            "InjectOnConstructorOfAbstractClass", // We use abstract injection as a pattern
            "InlineMeSuggester", // Only suppression seems to actually "fix" this, so make it global
            "JavaUtilDate", // We are fine with using Date
            "JavaxInjectOnAbstractMethod", // We use abstract injection as a pattern
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Oct 01 11:57:43 GMT 2025
    - 9.3K bytes
    - Click Count (0)
Back to Top