Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for lazyStackTraceIsLazy (0.07 seconds)

  1. guava/src/com/google/common/base/Throwables.java

       *     possible use the {@code java.lang.StackWalker.walk} method introduced in JDK 9.
       */
      @Deprecated
      @J2ktIncompatible
      @GwtIncompatible // lazyStackTraceIsLazy, jlaStackTrace
      public static List<StackTraceElement> lazyStackTrace(Throwable throwable) {
        return lazyStackTraceIsLazy()
            ? jlaStackTrace(throwable)
            : unmodifiableList(asList(throwable.getStackTrace()));
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 20.6K bytes
    - Click Count (0)
Back to Top