Skip to content

Commit

Permalink
fix(infrastructure): add missing import for java.util.Arrays (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
agdimech authored Apr 3, 2024
1 parent 22b980a commit 7afa3b7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 19 deletions.
22 changes: 3 additions & 19 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
{
"name": "Node.js 18 & TypeScript",
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-18-bullseye",
"features": {
"ghcr.io/devcontainers/features/java": {
"installGradle": true,
"installMaven": true,
"version": "11"
},
"ghcr.io/devcontainers-contrib/features/pnpm": {
"version": "latest"
},
"ghcr.io/devcontainers-contrib/features/poetry": {
"version": "latest"
},
"ghcr.io/devcontainers-contrib/features/projen:1": {}
},
"name": "PDK Image",
"image": "public.ecr.aws/p9i6h6j0/aws-pdk:latest",
"customizations": {
"vscode": {
"extensions": [
Expand All @@ -23,7 +9,5 @@
"GitHub.vscode-github-actions"
]
}
},
"postCreateCommand": "sudo apt update && sudo apt upgrade -y",
"postStartCommand": "sudo apt update"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package {{{groupId}}}.constructs.websites;

import java.util.Arrays;
import java.util.Map;
import java.util.TreeMap;

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7afa3b7

Please sign in to comment.