We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aad7b4 commit 7752fa4Copy full SHA for 7752fa4
1 file changed
google-cloud-spanner/src/main/java/com/google/cloud/spanner/v1/SpannerClient.java
@@ -184,6 +184,9 @@ public static final SpannerClient create(SpannerStub stub) {
184
protected SpannerClient(SpannerSettings settings) throws IOException {
185
this.settings = settings;
186
this.stub = ((SpannerStubSettings) settings.getStubSettings()).createStub();
187
+
188
+ // This is dummy statement to touch the Version class that is compiled for Java 11
189
+ System.out.println("org.graalvm.home.Version: " + org.graalvm.home.Version.parse("1.2.3"));
190
}
191
192
protected SpannerClient(SpannerStub stub) {
0 commit comments