File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public GenericConnection getConnection() {
6565 }
6666 }
6767
68- protected interface ITConnection extends Connection {}
68+ public interface ITConnection extends Connection {}
6969
7070 private ITConnection createITConnection (ConnectionOptions options ) {
7171 return new ITConnectionImpl (options );
Original file line number Diff line number Diff line change 1818import com .google .cloud .spanner .connection .ITAbstractSpannerTest .ITConnection ;
1919
2020/** Implementation of {@link ITConnection} for Spanner generic (not JDBC) connections. */
21- class ITConnectionImpl extends ConnectionImpl implements ITConnection {
21+ public class ITConnectionImpl extends ConnectionImpl implements ITConnection {
2222 ITConnectionImpl (ConnectionOptions options ) {
2323 super (options );
2424 }
You can’t perform that action at this time.
0 commit comments