(int start, int end)
| 660 | } |
| 661 | |
| 662 | public List<E> subList(int start, int end) { |
| 663 | synchronized (mutex) { |
| 664 | return new SynchronizedList<E>(list.subList(start, end), mutex); |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | // private void writeObject(ObjectOutputStream stream) throws IOException { |
| 669 | // synchronized (mutex) { |