Skip to content

Commit 67680df

Browse files
author
ehennum
committed
declare HTML version and supply missing JavaDoc #1076
1 parent ec80618 commit 67680df

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

marklogic-client-api/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ javadoc {
7676
options.bottom = "Copyright © 2013-2019 MarkLogic Corporation."
7777
options.links = [ 'http://docs.oracle.com/javase/8/docs/api/' ]
7878
options.use = true
79+
options.addBooleanOption('html4', true)
7980
exclude([
8081
'**/impl/**', '**/jaxb/**', '**/test/**',
8182
'com/marklogic/client/extra/xom/**',

marklogic-client-api/src/main/java/com/marklogic/client/example/cookbook/datamovement/JobInformationRecorder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ public class JobInformationRecorder {
116116
* Sets the WriteBatcher object which should be used for writing the job information. This
117117
* overrides the internal WriteBatcher object created by default.
118118
*
119+
* @param dataMovementManager The manager associated with the write batcher
119120
* @param writeBatcher The WriteBatcher object with which we should write the job information.
120121
* @return this object for chaining
121122
*/
@@ -210,7 +211,7 @@ public JobInformationRecorder withProperty(String key, String value) {
210211
* set before and initialize the properties with this map.
211212
*
212213
* @param properties map of Key value pairs
213-
* @return
214+
* @return this object for chaining
214215
*/
215216
public JobInformationRecorder withProperty(Map<String, String> properties) {
216217
if(sourceBatcher.isStarted()) throw new IllegalStateException("Configuration cannot be changed after startJob has been called");

0 commit comments

Comments
 (0)