160161162163164165166167168169170
{ reader.open(UTInput.createBufferedFileReader(trainFile)); while ((tree = reader.next()) != null) { component.bootstrap(tree); if (++total%5000 == 0) LOG.info("."); } reader.close(); }