File Manager - Deprecated usage legacy-style HQL

Am running the 2.0.8 version of the File Manager extension, under XWiki 11.10.2. Although the extension seems to be working fine, it produces a lot of the messages like produced below. Is there an issue with the extension, is there a way to fix this so the logs are not cluttered with these warnings? Thanks in advance.

                - Deprecated usage legacy-style HQL ordinal parameters (`?`); use JPA-style ordinal parameters (e.g., `?1`) instead. Query [select doc.fullName from XWikiDocument doc , BaseObject obj where doc.space = ? and doc.fullName = obj.name and obj.className in ('FileManagerCode.FolderClass', 'FileManagerCode.DriveClass') and doc.name in (?)] has been converted to [select doc.fullName from XWikiDocument doc , BaseObject obj where doc.space = ?1 and doc.fullName = obj.name and obj.className in ('FileManagerCode.FolderClass', 'FileManagerCode.DriveClass') and doc.name in (?2)]

You should report an issue. The warning shouldn’t have any bad effects. It’s just that no one had the time to update the queries. Pull requests are welcomed of course.

https://jira.xwiki.org/projects/FILEMAN/issues

Thanks, I opened a JIRA issue for it.
-Alan