From 7178cb5a3fe1086b93e8d12a66674f7fc77a493d Mon Sep 17 00:00:00 2001 From: Prasanna Rajaperumal Date: Mon, 20 Feb 2017 15:41:32 -0800 Subject: [PATCH] Fixing a javadoc lint issue --- .../src/main/java/com/uber/hoodie/HoodieWriteClient.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hoodie-client/src/main/java/com/uber/hoodie/HoodieWriteClient.java b/hoodie-client/src/main/java/com/uber/hoodie/HoodieWriteClient.java index 622a20ed7..d50f2e1de 100644 --- a/hoodie-client/src/main/java/com/uber/hoodie/HoodieWriteClient.java +++ b/hoodie-client/src/main/java/com/uber/hoodie/HoodieWriteClient.java @@ -165,7 +165,7 @@ public class HoodieWriteClient implements Seriali * Inserts the given HoodieRecords, into the table. This API is intended to be used for normal * writes. * - * This implementation skips the index check & is able to leverage benefits such as + * This implementation skips the index check and is able to leverage benefits such as * small file handling/blocking alignment, as with upsert(), by profiling the workload * * @param records HoodieRecords to insert @@ -298,7 +298,7 @@ public class HoodieWriteClient implements Seriali * loads into a Hoodie table for the very first time (e.g: converting an existing dataset to * Hoodie). * - * This implementation uses sortBy (which does range partitioning based on reservoir sampling) & + * This implementation uses sortBy (which does range partitioning based on reservoir sampling) and * attempts to control the numbers of files with less memory compared to the {@link * HoodieWriteClient#insert(JavaRDD, String)} *