Skip to content

Commit f207929

Browse files
committed
spotless
1 parent 15d8817 commit f207929

File tree

1 file changed

+2
-1
lines changed
  • src/main/java/com/cleanroommc/groovyscript/documentation

1 file changed

+2
-1
lines changed

src/main/java/com/cleanroommc/groovyscript/documentation/Exporter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ public static void generateExamples(String target, GroovyContainer<? extends Gro
163163
public static void logSkippedClasses() {
164164
if (SKIPPED_CLASSES.isEmpty()) return;
165165
GroovyLog.Msg log = GroovyLog.msg("Skipped documenting the following potentially valid locations (this may be the correct behavior!)");
166-
SKIPPED_CLASSES.entrySet().stream()
166+
SKIPPED_CLASSES.entrySet()
167+
.stream()
167168
.sorted(Map.Entry.comparingByKey(String.CASE_INSENSITIVE_ORDER))
168169
.forEach(entry -> log.add(entry.getKey() + ": " + entry.getValue().getName()));
169170
log.debug().post();

0 commit comments

Comments
 (0)