Compilation: don't warn about using Sun proprietary APIs

E.g. we use Unsafe in quite a few places and this generates lots of
warnings, which we now suppress using the undocumented
-XDignore.symbol.file command-line option to javac.

Closes #6423
This commit is contained in:
mikemccand 2014-06-06 05:45:52 -04:00
parent cdbde4a578
commit a71bb13563
1 changed files with 3 additions and 0 deletions

View File

@ -398,6 +398,9 @@
be fixed in version > 3.1
-->
<useIncrementalCompilation>false</useIncrementalCompilation>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>