major
minor
defect
major
minor
#26382
Error messages "Duplicate tag name..." when starting an application in the IDE from a TL-Studio
#26405
TTypeRewriter logs warning "Unable to resolve items by external reference" also unnecessarily
#26431
Changed superclass relationship leads to changed attribute list in the form editor only after a restart
defect
The pattern `Files.list(path).forEach(p -> {...}) ` returns an open file handle for the listed directory. Instead, you must write the following:
try (Stream<Path> files = Files.list(path)) {
files.forEach(p -> {...});
}
Test
- Start the application and verify that there aren’t a thousand open files lingering in WEB-INF/....
- lsof -p <process-id> | sort -k 8 | less