Skip to content

Commit 8eccfac

Browse files
authored
fix: resolve issue with missing constructor (#735)
1 parent ade2ca9 commit 8eccfac

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

packages/infrastructure/samples/infrastructure/java/src/java/groupId/stacks/ApplicationStack.java.mustache

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ import software.aws.pdk.identity.UserIdentity;
1212
import software.constructs.Construct;
1313

1414
public class ApplicationStack extends Stack {
15+
public ApplicationStack(Construct scope, String id) {
16+
this(scope, id, null);
17+
}
18+
1519
public ApplicationStack(Construct scope, String id, StackProps props) {
1620
super(scope, id, props);
1721

packages/infrastructure/test/projects/java/__snapshots__/infrastructure-java-project.test.ts.snap

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)