Skip to content

Commit 5a70ef6

Browse files
committed
style: Address checkstyle complaints
1 parent 1e33378 commit 5a70ef6

File tree

40 files changed

+142
-80
lines changed

40 files changed

+142
-80
lines changed

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateDialogNodeOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,8 @@ public String previousSibling() {
555555
* Gets the output.
556556
*
557557
* The output of the dialog node. For more information about how to specify dialog node output, see the
558-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
558+
* [documentation]
559+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
559560
*
560561
* @return the output
561562
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateValue.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ public List<String> synonyms() {
276276
* An array of patterns for the entity value. A value can specify either synonyms or patterns (depending on the value
277277
* type), but not both. A pattern is a regular expression; for more information about how to specify a pattern, see
278278
* the
279-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
279+
* [documentation]
280+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
280281
*
281282
* @return the patterns
282283
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/CreateValueOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ public List<String> synonyms() {
305305
* An array of patterns for the entity value. A value can specify either synonyms or patterns (depending on the value
306306
* type), but not both. A pattern is a regular expression; for more information about how to specify a pattern, see
307307
* the
308-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
308+
* [documentation]
309+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
309310
*
310311
* @return the patterns
311312
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/DialogNode.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,8 @@ public String previousSibling() {
552552
* Gets the output.
553553
*
554554
* The output of the dialog node. For more information about how to specify dialog node output, see the
555-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
555+
* [documentation]
556+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
556557
*
557558
* @return the output
558559
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/DialogNodeAction.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@
1212
*/
1313
package com.ibm.watson.assistant.v1.model;
1414

15-
import java.util.List;
16-
import java.util.Map;
17-
1815
import com.google.gson.annotations.SerializedName;
1916
import com.ibm.cloud.sdk.core.service.model.GenericModel;
2017

18+
import java.util.Map;
19+
2120
/**
2221
* DialogNodeAction.
2322
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/DialogNodeOutput.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
/**
2222
* The output of the dialog node. For more information about how to specify dialog node output, see the
23-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
23+
* [documentation]
24+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
2425
*/
2526
public class DialogNodeOutput extends DynamicModel<Object> {
2627
@SerializedName("generic")

assistant/src/main/java/com/ibm/watson/assistant/v1/model/SystemResponse.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
package com.ibm.watson.assistant.v1.model;
1414

15-
import com.google.gson.annotations.SerializedName;
1615
import com.google.gson.reflect.TypeToken;
1716
import com.ibm.cloud.sdk.core.service.model.DynamicModel;
1817

assistant/src/main/java/com/ibm/watson/assistant/v1/model/UpdateDialogNodeOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,8 @@ public String newPreviousSibling() {
553553
* Gets the newOutput.
554554
*
555555
* The output of the dialog node. For more information about how to specify dialog node output, see the
556-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
556+
* [documentation]
557+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
557558
*
558559
* @return the newOutput
559560
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/UpdateValueOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,8 @@ public List<String> newSynonyms() {
331331
* An array of patterns for the entity value. A value can specify either synonyms or patterns (depending on the value
332332
* type), but not both. A pattern is a regular expression; for more information about how to specify a pattern, see
333333
* the
334-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
334+
* [documentation]
335+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
335336
*
336337
* @return the newPatterns
337338
*/

assistant/src/main/java/com/ibm/watson/assistant/v1/model/Value.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ public List<String> synonyms() {
280280
* An array of patterns for the entity value. A value can specify either synonyms or patterns (depending on the value
281281
* type), but not both. A pattern is a regular expression; for more information about how to specify a pattern, see
282282
* the
283-
* [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
283+
* [documentation]
284+
* (https://cloud.ibm.com/docs/services/assistant?topic=assistant-entities#entities-create-dictionary-based).
284285
*
285286
* @return the patterns
286287
*/

0 commit comments

Comments
 (0)