Skip to content

Commit cd3a7bf

Browse files
committed
Fix invalid javadoc in BatchedExecutionStrategy
Some erroneous HTML tags were added in b603ffa that cause the Gradle javadoc task to fail with errors.
1 parent 0c44b10 commit cd3a7bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/graphql/execution/batched/BatchedExecutionStrategy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
* Execution Strategy that minimizes calls to the data fetcher when used in conjunction with {@link DataFetcher}s that have
2020
* {@link DataFetcher#get(DataFetchingEnvironment)} methods annotated with {@link Batched}. See the javadoc comment on
2121
* {@link Batched} for a more detailed description of batched data fetchers.
22-
* <p/>
22+
* <p>
2323
* The strategy runs a BFS over terms of the query and passes a list of all the relevant sources to the batched data fetcher.
24-
* <p/>
24+
* </p>
2525
* Normal DataFetchers can be used, however they will not see benefits of batching as they expect a single source object
2626
* at a time.
2727
*/

0 commit comments

Comments
 (0)