How to disable this annoying message? ``` w: ATTEN...
# gradle
t
How to disable this annoying message?
Copy code
w: ATTENTION!
This build uses unsafe internal compiler arguments:

-XXLanguage:+InlineClasses
Start to happen after adding this:
Copy code
freeCompilerArgs += [
                    "-XXLanguage:+InlineClasses"
            ]
3
g
I saw some issue where suggested to make those unsafe warnings configurable, but could find it on tracker
t
g
d
That's our (shameful) tech debt. We've scheduled it for 1.3.50
👍 2