@@ -492,7 +492,7 @@ public static Builder builder() {
492492 * @param reOpen whether to close/reopen the file between chunks.
493493 * @param bufferSize buffer size.
494494 * @return The new tailer.
495- * @deprecated Use {@link #builder()}.
495+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
496496 */
497497 @ Deprecated
498498 public static Tailer create (final File file , final Charset charset , final TailerListener listener , final long delayMillis , final boolean end ,
@@ -516,7 +516,7 @@ public static Tailer create(final File file, final Charset charset, final Tailer
516516 * @param file the file to follow.
517517 * @param listener the TailerListener to use.
518518 * @return The new tailer.
519- * @deprecated Use {@link #builder()}.
519+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
520520 */
521521 @ Deprecated
522522 public static Tailer create (final File file , final TailerListener listener ) {
@@ -535,7 +535,7 @@ public static Tailer create(final File file, final TailerListener listener) {
535535 * @param listener the TailerListener to use.
536536 * @param delayMillis the delay between checks of the file for new content in milliseconds.
537537 * @return The new tailer.
538- * @deprecated Use {@link #builder()}.
538+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
539539 */
540540 @ Deprecated
541541 public static Tailer create (final File file , final TailerListener listener , final long delayMillis ) {
@@ -556,7 +556,7 @@ public static Tailer create(final File file, final TailerListener listener, fina
556556 * @param delayMillis the delay between checks of the file for new content in milliseconds.
557557 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
558558 * @return The new tailer.
559- * @deprecated Use {@link #builder()}.
559+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
560560 */
561561 @ Deprecated
562562 public static Tailer create (final File file , final TailerListener listener , final long delayMillis , final boolean end ) {
@@ -579,7 +579,7 @@ public static Tailer create(final File file, final TailerListener listener, fina
579579 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
580580 * @param reOpen whether to close/reopen the file between chunks.
581581 * @return The new tailer.
582- * @deprecated Use {@link #builder()}.
582+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
583583 */
584584 @ Deprecated
585585 public static Tailer create (final File file , final TailerListener listener , final long delayMillis , final boolean end , final boolean reOpen ) {
@@ -604,7 +604,7 @@ public static Tailer create(final File file, final TailerListener listener, fina
604604 * @param reOpen whether to close/reopen the file between chunks.
605605 * @param bufferSize buffer size.
606606 * @return The new tailer.
607- * @deprecated Use {@link #builder()}.
607+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
608608 */
609609 @ Deprecated
610610 public static Tailer create (final File file , final TailerListener listener , final long delayMillis , final boolean end , final boolean reOpen ,
@@ -630,7 +630,7 @@ public static Tailer create(final File file, final TailerListener listener, fina
630630 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
631631 * @param bufferSize buffer size.
632632 * @return The new tailer.
633- * @deprecated Use {@link #builder()}.
633+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
634634 */
635635 @ Deprecated
636636 public static Tailer create (final File file , final TailerListener listener , final long delayMillis , final boolean end , final int bufferSize ) {
@@ -695,7 +695,7 @@ public static Tailer create(final File file, final TailerListener listener, fina
695695 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
696696 * @param reOpen if true, close and reopen the file between reading chunks
697697 * @param bufSize Buffer size
698- * @deprecated Use {@link #builder()}.
698+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
699699 */
700700 @ Deprecated
701701 public Tailer (final File file , final Charset charset , final TailerListener listener , final long delayMillis , final boolean end , final boolean reOpen ,
@@ -708,7 +708,7 @@ public Tailer(final File file, final Charset charset, final TailerListener liste
708708 *
709709 * @param file The file to follow.
710710 * @param listener the TailerListener to use.
711- * @deprecated Use {@link #builder()}.
711+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
712712 */
713713 @ Deprecated
714714 public Tailer (final File file , final TailerListener listener ) {
@@ -721,7 +721,7 @@ public Tailer(final File file, final TailerListener listener) {
721721 * @param file the file to follow.
722722 * @param listener the TailerListener to use.
723723 * @param delayMillis the delay between checks of the file for new content in milliseconds.
724- * @deprecated Use {@link #builder()}.
724+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
725725 */
726726 @ Deprecated
727727 public Tailer (final File file , final TailerListener listener , final long delayMillis ) {
@@ -735,7 +735,7 @@ public Tailer(final File file, final TailerListener listener, final long delayMi
735735 * @param listener the TailerListener to use.
736736 * @param delayMillis the delay between checks of the file for new content in milliseconds.
737737 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
738- * @deprecated Use {@link #builder()}.
738+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
739739 */
740740 @ Deprecated
741741 public Tailer (final File file , final TailerListener listener , final long delayMillis , final boolean end ) {
@@ -750,7 +750,7 @@ public Tailer(final File file, final TailerListener listener, final long delayMi
750750 * @param delayMillis the delay between checks of the file for new content in milliseconds.
751751 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
752752 * @param reOpen if true, close and reopen the file between reading chunks
753- * @deprecated Use {@link #builder()}.
753+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
754754 */
755755 @ Deprecated
756756 public Tailer (final File file , final TailerListener listener , final long delayMillis , final boolean end , final boolean reOpen ) {
@@ -766,7 +766,7 @@ public Tailer(final File file, final TailerListener listener, final long delayMi
766766 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
767767 * @param reOpen if true, close and reopen the file between reading chunks
768768 * @param bufferSize Buffer size
769- * @deprecated Use {@link #builder()}.
769+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
770770 */
771771 @ Deprecated
772772 public Tailer (final File file , final TailerListener listener , final long delayMillis , final boolean end , final boolean reOpen , final int bufferSize ) {
@@ -781,7 +781,7 @@ public Tailer(final File file, final TailerListener listener, final long delayMi
781781 * @param delayMillis the delay between checks of the file for new content in milliseconds.
782782 * @param end Set to true to tail from the end of the file, false to tail from the beginning of the file.
783783 * @param bufferSize Buffer size
784- * @deprecated Use {@link #builder()}.
784+ * @deprecated Use {@link #builder()} and {@link Builder#get()} .
785785 */
786786 @ Deprecated
787787 public Tailer (final File file , final TailerListener listener , final long delayMillis , final boolean end , final int bufferSize ) {
0 commit comments