Skip to content

Commit

Permalink
Formatting fixes for CircleCI failures (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
jabubake authored and lesv committed Jun 16, 2017
1 parent 2c430ea commit 89e38b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import com.google.cloud.spanner.DatabaseId;
import com.google.cloud.spanner.Spanner;
import com.google.cloud.spanner.SpannerOptions;

import java.io.IOException;
import java.util.UUID;
import javax.servlet.ServletContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.google.cloud.spanner.Struct;
import com.google.common.base.Stopwatch;
import com.google.spanner.admin.database.v1.UpdateDatabaseDdlMetadata;

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
Expand Down Expand Up @@ -331,7 +332,8 @@ private static void addStoringIndex() {
SpannerClient.getInstanceId(),
SpannerClient.getDatabaseId(),
Arrays.asList(
"CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) STORING (MarketingBudget)"),
"CREATE INDEX AlbumsByAlbumTitle2 "
+ "ON Albums(AlbumTitle) STORING (MarketingBudget)"),
null);
op.waitFor();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.example.appengine.spanner;

import com.example.appengine.spanner.SpannerTasks.Task;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Arrays;
Expand Down

0 comments on commit 89e38b2

Please sign in to comment.