Skip to content

Commit a973835

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent d6fb825 commit a973835

File tree

1 file changed

+2
-2
lines changed
  • build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/dependencies/patches

1 file changed

+2
-2
lines changed

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/dependencies/patches/Utils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ public static void patchJar(File inputFile, File outputFile, Collection<PatcherI
113113
try (InputStream is = jarFile.getInputStream(entry)) {
114114
if (unsignJar && entryName.equals("META-INF/MANIFEST.MF")) {
115115
var manifest = new Manifest(is);
116-
for (var manifestEntry: manifest.getEntries().entrySet()) {
116+
for (var manifestEntry : manifest.getEntries().entrySet()) {
117117
var nonSignatureAttributes = new Attributes();
118-
for (var attribute: manifestEntry.getValue().entrySet()) {
118+
for (var attribute : manifestEntry.getValue().entrySet()) {
119119
if (attribute.getKey().toString().endsWith("Digest") == false) {
120120
nonSignatureAttributes.put(attribute.getKey(), attribute.getValue());
121121
}

0 commit comments

Comments
 (0)