Skip to content

Commit 28db15a

Browse files
committed
Fix missing final
1 parent 431b3a3 commit 28db15a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample-code/spring-app/src/main/java/com/sap/ai/sdk/app/controllers/GroundingController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Object getAllPipelines(
6868
return pipelines;
6969
}
7070
final var ids = new ArrayList<>();
71-
for (GetPipeline resource : pipelines.getResources()) {
71+
for (final GetPipeline resource : pipelines.getResources()) {
7272
switch (resource.getType().toString()) {
7373
case "MSSharePoint" -> ids.add(((MSSharePointPipelineGetResponse) resource).getId());
7474
case "S3" -> ids.add(((S3PipelineGetResponse) resource).getId());

0 commit comments

Comments
 (0)