Skip to content

Commit 940e2b6

Browse files
authored
chore: make Partition class getters public (#2195)
Make getters in Partition class public so that they can be accessed outside com.google.cloud.spanner package.
1 parent 22ae0ed commit 940e2b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ implementation 'com.google.cloud:google-cloud-spanner'
5656
If you are using Gradle without BOM, add this to your dependencies:
5757

5858
```Groovy
59-
implementation 'com.google.cloud:google-cloud-spanner:6.33.0'
59+
implementation 'com.google.cloud:google-cloud-spanner:6.34.0'
6060
```
6161

6262
If you are using SBT, add this to your dependencies:
6363

6464
```Scala
65-
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.33.0"
65+
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.34.0"
6666
```
6767

6868
## Authentication

google-cloud-spanner/src/main/java/com/google/cloud/spanner/Partition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static Partition createQueryPartition(
9292
return new Partition(partitionToken, partitionOptions, statement, queryOption);
9393
}
9494

95-
ByteString getPartitionToken() {
95+
public ByteString getPartitionToken() {
9696
return partitionToken;
9797
}
9898

0 commit comments

Comments
 (0)