We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90abc1 commit d67931bCopy full SHA for d67931b
codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/VersionCompatibilityTestSpec.java
@@ -61,8 +61,8 @@ private MethodSpec compatibilityTest() {
61
.addStatement("String coreVersion = $T.SDK_VERSION", versionInfo)
62
.addStatement("String serviceVersion = $T.VERSION", serviceVersionInfo)
63
.addStatement("$T.assertThat(isVersionCompatible(coreVersion, serviceVersion))" +
64
- ".withFailMessage(\"Core version %s must be equal to or newer than service version %s\", " +
65
- "coreVersion, serviceVersion).isTrue()",
+ ".withFailMessage(\"Core version %s must be equal to or newer than service version %s\", "
+ + "coreVersion, serviceVersion).isTrue()",
66
assertions)
67
.build();
68
}
0 commit comments