Not thread-safe. @author Ben Yu.
164165166167168169170171172173174
locator.lineBreakIndices.add(i); } } private static IntList intList(int... ints) { IntList intList = new IntList(); for (int i : ints) { intList.add(i); } return intList; }
193194195196197198199200201202203