Skip to content

Commit

Permalink
fix: explicit type arguments inferred for KubernetesResourceUtil
Browse files Browse the repository at this point in the history
Signed-off-by: atsI <[email protected]>
  • Loading branch information
abusk authored Aug 29, 2024
1 parent 46355cb commit a84777f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ private static Map<String, String> mergeMapsAndRemoveEmptyStrings(Map<String, St
// rather than a full complete manifest
// we could also use an annotation?
private static boolean isLocalCustomisation(PodSpec podSpec) {
List<Container> containers = podSpec.getContainers() != null ? podSpec.getContainers() : Collections.<Container>emptyList();
List<Container> containers = podSpec.getContainers() != null ? podSpec.getContainers() : Collections.emptyList();
for (Container container : containers) {
if (StringUtils.isNotBlank(container.getImage())) {
return false;
Expand Down

0 comments on commit a84777f

Please sign in to comment.