rogerkeays / unchecked

Say goodbye to checked exceptions forever.

Home Page:https://patreon.com/Jamaica440

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fluent breaks some compiler messages: Note: {0} uses or overrides a deprecated API

rogerkeays opened this issue · comments

seen in the tomcat and hibernate build

Note: {0} uses or overrides a deprecated API

before:

TestAttrErrors.java:6: warning: [removal] deprecated() in Depr has been deprecated and marked for removal
        Depr.deprecated(); // deprecated method
            ^

after:

warning: [removal] deprecated() in Depr has been deprecated and marked for removal

replacing the custom log class with a custom diagnosticHandler fixes this problem (commit 6d586e6)