Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: revert activate 'rosetta infuse' feature (#17207)
The examples we copy into docblocks may contain block comments themselves. However, the docblock renderer does not escape the docblock *closing* text, so the doc block gets terminated early and compiling fails: ```java /** * Initialization props for the `NestedStack` construct. * <p> * Example: * <p> * <blockquote><pre>{@code * // Example automatically generated. See aws/jsii#826 * import software.amazon.awscdk.core.App; * import software.amazon.awscdk.core.CfnOutput; * import software.amazon.awscdk.core.NestedStack; * import lib.RestApi; * import lib.Stage; * /** * * This file showcases how to split up a RestApi's Resources and Methods across nested stacks. * * * * The root stack 'RootStack' first defines a RestApi. * * Two nested stacks BooksStack and PetsStack, create corresponding Resources '/books' and '/pets'. * * They are then deployed to a 'prod' Stage via a third nested stack - DeployStack. * * * * To verify this worked, go to the APIGateway * */ <------------ OOOPS! * public class RootStack extends Stack { * public RootStack(Construct scope) { * super(scope, "integ-restapi-import-RootStack"); * RestApi restApi = RestApi.Builder.cre ``` Revert this until we can address the quoting issue. Reverts #17191
- Loading branch information