Skip to content

Commit d639c7c

Browse files
committed
fix invalid javadocs
1 parent 1547e16 commit d639c7c

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/com/gooddata/collections/Page.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public interface Page {
1212

1313
/**
1414
* Creates {@link URI} for this page request.
15-
* <p/>
15+
* <p>
1616
* Use {@link #updateWithPageParams(UriComponentsBuilder)} if you have URI template and only want to update it with
1717
* page query params.
1818
*
@@ -23,17 +23,17 @@ public interface Page {
2323

2424
/**
2525
* Updates provided URI builder query params according to this page configuration.
26-
* <p/>
26+
* <p>
2727
* As {@link #getPageUri(UriComponentsBuilder)} returns expanded page URI it is not very useful for cases that
2828
* require use of URI template with URI variables. This method allows you to use URI templates and benefit
2929
* from pagination support implemented in {@link Page} implementations. It is especially useful if you need to handle
3030
* multiple requests of the same URI template in the same way - e.g. monitor request made by {@link RestOperations}
3131
* methods.
32-
* <p/>
32+
* <p>
3333
* Use this in the situation when you have URI template with placeholders and URI variables separately.
3434
* This method is useful when you have URI template with placeholders and only want to add query parameters based
3535
* on this page to it.
36-
* <p/>
36+
* <p>
3737
* Use {@link #getPageUri(UriComponentsBuilder)} if you want to get concrete page URI and don't have URI template.
3838
*
3939
* @param uriBuilder URI builder used for constructing page URI

src/main/java/com/gooddata/collections/UriPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public URI getPageUri(final UriComponentsBuilder uriBuilder) {
3838

3939
/**
4040
* {@inheritDoc}
41-
* <p/>
41+
* <p>
4242
* Note that by using this method you might end up with URI that will be different from the one returned by
4343
* {@link #getPageUri(UriComponentsBuilder)}. Method only copies query parameters and does not care about
4444
* URI path.

src/main/java/com/gooddata/connector/ConnectorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public FutureResult<ProcessStatus> executeProcess(final Project project, final P
208208

209209
/**
210210
* Gets status of provided connector process.
211-
* <p/>
211+
* <p>
212212
* You can use process retrieved by <code>getXXXProcess</code> methods on {@link Integration} as well as a result of
213213
* {@link ConnectorService#executeProcess(Project, ProcessExecution)}.
214214
*

src/main/java/com/gooddata/md/ReportAttachment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ protected ReportAttachment(String uri, Map<String, String> exportOptions, Report
9494
* </li>
9595
* </ul>
9696
*
97-
* @return
97+
* @return map of export options
9898
*/
9999
public Map<String, String> getExportOptions() { return exportOptions; }
100100

0 commit comments

Comments
 (0)