Skip to content

Commit 34f6a09

Browse files
chore(all): formatting changes
1 parent 29ca3c5 commit 34f6a09

File tree

8 files changed

+26
-24
lines changed

8 files changed

+26
-24
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
public class DialogNodeOutputGenericDialogNodeOutputResponseTypeConnectToAgent
2121
extends DialogNodeOutputGeneric {
2222

23-
@SerializedName("transfer_info")
23+
@SerializedName("transfer_info")
2424
private DialogNodeOutputConnectToAgentTransferInfo transferInfo;
2525

2626
/** Builder. */

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
public class RuntimeResponseGenericRuntimeResponseTypeChannelTransfer
2121
extends RuntimeResponseGeneric {
2222

23-
@SerializedName("transfer_info")
23+
@SerializedName("transfer_info")
2424
protected ChannelTransferInfo transferInfo;
2525

2626
/** Builder. */

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
public class RuntimeResponseGenericRuntimeResponseTypeConnectToAgent
2121
extends RuntimeResponseGeneric {
2222

23-
@SerializedName("transfer_info")
23+
@SerializedName("transfer_info")
2424
protected DialogNodeOutputConnectToAgentTransferInfo transferInfo;
2525

2626
/** Builder. */

assistant/src/test/java/com/ibm/watson/assistant/v2/AssistantServiceIT.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ public void testSendMessages() {
7575
.input(input)
7676
.context(context)
7777
.build();
78-
StatefulMessageResponse messageResponse = service.message(messageOptions).execute().getResult();
78+
StatefulMessageResponse messageResponse =
79+
service.message(messageOptions).execute().getResult();
7980

8081
// message assertions
8182
List<RuntimeResponseGeneric> genericResponses = messageResponse.getOutput().getGeneric();

discovery/src/main/java/com/ibm/watson/discovery/v2/model/QueryAggregationQueryHistogramAggregation.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ public class QueryAggregationQueryHistogramAggregation extends QueryAggregation
2727
protected QueryAggregationQueryHistogramAggregation() {}
2828

2929
/**
30-
* Gets the interval.
31-
*
32-
* <p>The size of the sections that the results are split into.
33-
*
34-
* @return the interval
35-
*/
30+
* Gets the interval.
31+
*
32+
* <p>The size of the sections that the results are split into.
33+
*
34+
* @return the interval
35+
*/
3636
public Long getInterval() {
3737
return interval;
3838
}

discovery/src/main/java/com/ibm/watson/discovery/v2/model/QueryAggregationQueryTimesliceAggregation.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@ public class QueryAggregationQueryTimesliceAggregation extends QueryAggregation
2323

2424
protected QueryAggregationQueryTimesliceAggregation() {}
2525

26-
2726
/**
28-
* Gets the interval.
29-
*
30-
* <p>The date interval value.
31-
*
32-
* @return the interval
33-
*/
27+
* Gets the interval.
28+
*
29+
* <p>The date interval value.
30+
*
31+
* @return the interval
32+
*/
3433
public String getInterval() {
3534
return interval;
3635
}

language-translator/src/test/java/com/ibm/watson/language_translator/v3/LanguageTranslatorIT.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,12 @@ public class LanguageTranslatorIT extends WatsonServiceTest {
4646
private LanguageTranslator service;
4747

4848
private final Map<String, String> translations =
49-
new HashMap<String, String>() {{
50-
put("The IBM Watson team is awesome", "El equipo de IBM Watson es impresionante");
51-
put("Welcome to the cognitive era", "Bienvenido a la era cognitiva");
52-
}};
49+
new HashMap<String, String>() {
50+
{
51+
put("The IBM Watson team is awesome", "El equipo de IBM Watson es impresionante");
52+
put("Welcome to the cognitive era", "Bienvenido a la era cognitiva");
53+
}
54+
};
5355
private final List<String> texts = new ArrayList<>(translations.keySet());
5456

5557
/**

text-to-speech/src/main/java/com/ibm/watson/text_to_speech/v1/model/SynthesizeOptions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public interface SpellOutMode {
126126
protected String spellOutMode;
127127
protected Long ratePercentage;
128128
protected Long pitchPercentage;
129-
protected List<String> timings;
129+
protected List<String> timings;
130130

131131
/** Builder. */
132132
public static class Builder {
@@ -137,7 +137,7 @@ public static class Builder {
137137
private String spellOutMode;
138138
private Long ratePercentage;
139139
private Long pitchPercentage;
140-
private List<String> timings;
140+
private List<String> timings;
141141

142142
/**
143143
* Instantiates a new Builder from an existing SynthesizeOptions instance.
@@ -152,7 +152,7 @@ private Builder(SynthesizeOptions synthesizeOptions) {
152152
this.spellOutMode = synthesizeOptions.spellOutMode;
153153
this.ratePercentage = synthesizeOptions.ratePercentage;
154154
this.pitchPercentage = synthesizeOptions.pitchPercentage;
155-
this.timings = synthesizeOptions.timings;
155+
this.timings = synthesizeOptions.timings;
156156
}
157157

158158
/** Instantiates a new builder. */

0 commit comments

Comments
 (0)