(boolean first, List<T> l, T x)
| 823 | } catch (java.lang.reflect.InaccessibleObjectException e) { |
| 824 | // well, hello jigsaw... |
| 825 | } |
| 826 | return object; |
| 827 | } |
| 828 | |
| 829 | private <T> void add(boolean first, List<T> l, T x) { |
| 830 | |
| 831 | if (first) l.add(0, x); |
| 832 | else l.add(x); |
no outgoing calls
no test coverage detected