Returns the Method that can be used to resolve an individual StackTraceElement, or null if that method cannot be found (it is only to be found in fairly recent JDKs).
()
| 459 | */ |
| 460 | |
| 461 | @GwtIncompatible // java.lang.reflect |
| 462 | @Nullable |
| 463 | private static Method getGetMethod() { |
| 464 | return getJlaMethod("getStackTraceElement", Throwable.class, int.class); |
| 465 | } |
| 466 | |
| 467 | /** |
| 468 | * Returns the Method that can be used to return the size of a stack, or null if that method |