Skip to content

Commit 1721657

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent a9984fe commit 1721657

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build-tools/src/main/java/org/elasticsearch/gradle/plugin/GenerateTestBuildInfoTask.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void generatePropertiesFile() throws IOException {
7373
cr.accept(new ClassVisitor(Opcodes.ASM9) {
7474
@Override
7575
public ModuleVisitor visitModule(String name, int access, String version) {
76-
//getLogger().lifecycle("FOUND 0: " + name + " | " + file.getAbsolutePath());
76+
// getLogger().lifecycle("FOUND 0: " + name + " | " + file.getAbsolutePath());
7777
moduleName[0] = name;
7878
return super.visitModule(name, access, version);
7979
}
@@ -113,7 +113,7 @@ public ModuleVisitor visitModule(String name, int access, String version) {
113113
cr.accept(new ClassVisitor(Opcodes.ASM9) {
114114
@Override
115115
public ModuleVisitor visitModule(String name, int access, String version) {
116-
//getLogger().lifecycle("FOUND 1: " + name + " | " + file.getAbsolutePath());
116+
// getLogger().lifecycle("FOUND 1: " + name + " | " + file.getAbsolutePath());
117117
moduleName[0] = name;
118118
return super.visitModule(name, access, version);
119119
}
@@ -125,7 +125,7 @@ public ModuleVisitor visitModule(String name, int access, String version) {
125125
if (moduleName[0] == null) {
126126
String amn = manifest.getMainAttributes().getValue("Automatic-Module-Name");
127127
if (amn != null) {
128-
//getLogger().lifecycle("FOUND 2: " + amn + " | " + file.getAbsolutePath());
128+
// getLogger().lifecycle("FOUND 2: " + amn + " | " + file.getAbsolutePath());
129129
moduleName[0] = amn;
130130
}
131131
}
@@ -138,7 +138,7 @@ public ModuleVisitor visitModule(String name, int access, String version) {
138138
jn = jn.substring(0, matcher.start());
139139
}
140140
jn = jn.replaceAll("[^A-Za-z0-9]", ".");
141-
//getLogger().lifecycle("FOUND 3: " + jn + " | " + file.getAbsolutePath());
141+
// getLogger().lifecycle("FOUND 3: " + jn + " | " + file.getAbsolutePath());
142142
moduleName[0] = jn;
143143
}
144144
}

0 commit comments

Comments
 (0)