Skip to content

Commit 828d6d4

Browse files
author
jantje
committed
increasing limit of headers from 6 to 10
1 parent 09cd8f5 commit 828d6d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

io.sloeber.core/src/io/sloeber/core/tools/Libraries.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,8 @@ public boolean accept(File dir, String name) {
437437
// overrule
438438
doubleHeaders.add(curLibName);
439439
map.remove(curLibName + ".h");
440-
} else if (allHeaderFiles.length < 6) { // Ignore libraries with to
441-
// many headers
440+
} else if (allHeaderFiles.length <= 10) { // Ignore libraries with
441+
// to many headers
442442
for (File CurFile : allHeaderFiles) {
443443
String curInclude = CurFile.getName().substring(0, CurFile.getName().length() - 2);
444444

0 commit comments

Comments
 (0)