(@NonNull Throwable t)
| 141 | } |
| 142 | |
| 143 | @SuppressWarnings("unchecked") |
| 144 | private static <T extends Throwable> void unsafeThrowImpl(@NonNull Throwable t) throws T { |
| 145 | throw (T) t; |
| 146 | } |
| 147 | |
| 148 | public static void writeFile(@NonNull File file, @NonNull byte[] data) throws IOException { |
| 149 | Objects.requireNonNull(file, "file == null"); |
no outgoing calls
no test coverage detected