(@NotNull T ao)
| 508 | } |
| 509 | |
| 510 | public static <T extends AccessibleObject> @NotNull T setAccessible(@NotNull T ao) { |
| 511 | unsafe.putBoolean(ao, OVERRIDE_OFFSET, true); |
| 512 | return ao; |
| 513 | } |
| 514 | |
| 515 | public static <T> @NotNull T ensureNotNull(@Nullable T obj) { |
| 516 | assert obj != null; |
no outgoing calls