@@ -95,10 +95,10 @@ public static <K, V> DataLoader<K, V> newDataLoader(BatchLoader<K, V> batchLoadF
9595 * Creates new DataLoader with the specified batch loader function and default options
9696 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
9797 * {@link org.dataloader.Try} objects.
98- *
98+ * <p>
9999 * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
100100 * you can use this form to create the data loader.
101- *
101+ * <p>
102102 * Using Try objects allows you to capture a value returned or an exception that might
103103 * have occurred trying to get a value. .
104104 *
@@ -163,10 +163,10 @@ public static <K, V> DataLoader<K, V> newDataLoader(BatchLoaderWithContext<K, V>
163163 * Creates new DataLoader with the specified batch loader function and default options
164164 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
165165 * {@link org.dataloader.Try} objects.
166- *
166+ * <p>
167167 * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
168168 * you can use this form to create the data loader.
169- *
169+ * <p>
170170 * Using Try objects allows you to capture a value returned or an exception that might
171171 * have occurred trying to get a value. .
172172 *
@@ -230,13 +230,13 @@ public static <K, V> DataLoader<K, V> newMappedDataLoader(MappedBatchLoader<K, V
230230 * Creates new DataLoader with the specified batch loader function and default options
231231 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
232232 * {@link org.dataloader.Try} objects.
233- *
233+ * <p>
234234 * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
235235 * you can use this form to create the data loader.
236236 *
237237 * Using Try objects allows you to capture a value returned or an exception that might
238238 * have occurred trying to get a value. .
239- *
239+ * <p>
240240 * @param batchLoadFunction the batch load function to use that uses {@link org.dataloader.Try} objects
241241 * @param <K> the key type
242242 * @param <V> the value type
@@ -298,10 +298,10 @@ public static <K, V> DataLoader<K, V> newMappedDataLoader(MappedBatchLoaderWithC
298298 * Creates new DataLoader with the specified batch loader function and default options
299299 * (batching, caching and unlimited batch size) where the batch loader function returns a list of
300300 * {@link org.dataloader.Try} objects.
301- *
301+ * <p>
302302 * If its important you to know the exact status of each item in a batch call and whether it threw exceptions then
303303 * you can use this form to create the data loader.
304- *
304+ * <p>
305305 * Using Try objects allows you to capture a value returned or an exception that might
306306 * have occurred trying to get a value. .
307307 *
0 commit comments