@@ -96,13 +96,13 @@ public WorkshopStack(final Construct scope, final String id, final StackProps pr
9696 .build ());
9797
9898 // ECR Registry settings (Repository Creation Template for create-on-push)
99- EcrRegistry ecrRegistry = new EcrRegistry (this , "EcrRegistry" ,
99+ new EcrRegistry (this , "EcrRegistry" ,
100100 EcrRegistry .EcrRegistryProps .builder ()
101101 .prefix (prefix )
102102 .build ());
103103
104104 // Thread Analysis (thread dump Lambda + API Gateway)
105- ThreadAnalysis threadAnalysis = new ThreadAnalysis (this , "ThreadAnalysis" ,
105+ new ThreadAnalysis (this , "ThreadAnalysis" ,
106106 ThreadAnalysis .ThreadAnalysisProps .builder ()
107107 .prefix (prefix )
108108 .vpc (vpc .getVpc ())
@@ -112,13 +112,13 @@ public WorkshopStack(final Construct scope, final String id, final StackProps pr
112112 .build ());
113113
114114 // AI JVM Analyzer (Pod Identity role for ai-jvm-analyzer)
115- AiJvmAnalyzer aiJvmAnalyzer = new AiJvmAnalyzer (this , "AiJvmAnalyzer" ,
115+ new AiJvmAnalyzer (this , "AiJvmAnalyzer" ,
116116 AiJvmAnalyzer .AiJvmAnalyzerProps .builder ()
117117 .workshopBucket (workshopBucket .getBucket ())
118118 .build ());
119119
120120 // Unicorn construct: Roles + DB Setup (uses unicorn* naming for workshop content compatibility)
121- Unicorn unicorn = new Unicorn (this , "Unicorn" , Unicorn .UnicornProps .builder ()
121+ new Unicorn (this , "Unicorn" , Unicorn .UnicornProps .builder ()
122122 .vpc (vpc .getVpc ())
123123 .database (database )
124124 .workshopBucket (workshopBucket .getBucket ())
0 commit comments