()
| 57 | } |
| 58 | |
| 59 | @Override |
| 60 | public void close() { |
| 61 | assert _onUIThread() : "Should be run on UI thread"; |
| 62 | assert !isClosed() : "Layer is already closed"; |
| 63 | _nClose(); |
| 64 | super.close(); |
| 65 | } |
| 66 | |
| 67 | @ApiStatus.Internal public static boolean _onUIThread() { |
| 68 | return App._onUIThread(); |
nothing calls this directly
no test coverage detected