Skip to content

Commit e56ffc9

Browse files
committed
ran google java format
1 parent 3976813 commit e56ffc9

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

speech/grpc/src/main/java/com/google/cloud/speech/grpc/demos/AsyncRecognizeClient.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,9 @@ public static ManagedChannel createChannel(String host, int port) throws IOExcep
9494
.build();
9595

9696
return channel;
97+
}
9798

98-
}
99-
100-
/**
99+
/**
101100
* Sends a request to the speech API and returns an Operation handle.
102101
*/
103102
public void recognize() {

speech/grpc/src/main/java/com/google/cloud/speech/grpc/demos/StreamingRecognizeClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
1817
package com.google.cloud.speech.grpc.demos;
1918

2019
import com.google.auth.oauth2.GoogleCredentials;

speech/grpc/src/main/java/com/google/cloud/speech/grpc/demos/SyncRecognizeClient.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
1817
package com.google.cloud.speech.grpc.demos;
1918

2019
import com.google.auth.oauth2.GoogleCredentials;
@@ -182,8 +181,7 @@ public static void main(String[] args) throws Exception {
182181
}
183182

184183
ManagedChannel channel = AsyncRecognizeClient.createChannel(host, port);
185-
SyncRecognizeClient client =
186-
new SyncRecognizeClient(channel, URI.create(audioFile), sampling);
184+
SyncRecognizeClient client = new SyncRecognizeClient(channel, URI.create(audioFile), sampling);
187185
try {
188186
client.recognize();
189187
} finally {

0 commit comments

Comments
 (0)