diff options
author | wisberg <wisberg> | 2003-05-27 19:44:02 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-27 19:44:02 +0000 |
commit | 93240873fabbdcf44a7c8f4669130f5e9c058868 (patch) | |
tree | 89b4254d0c6f0affc96ff3dc6c0471346db74bc8 /docs/devGuideDB | |
parent | 594d612882406850b607e871f31b7cab606e6710 (diff) | |
download | aspectj-93240873fabbdcf44a7c8f4669130f5e9c058868.tar.gz aspectj-93240873fabbdcf44a7c8f4669130f5e9c058868.zip |
- caveat for -nowarn per bug 38134
- documented -warn:none, since valid and used in -nowarn
Diffstat (limited to 'docs/devGuideDB')
-rw-r--r-- | docs/devGuideDB/ajc.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/devGuideDB/ajc.xml b/docs/devGuideDB/ajc.xml index ffee1eb1d..a0030e537 100644 --- a/docs/devGuideDB/ajc.xml +++ b/docs/devGuideDB/ajc.xml @@ -129,7 +129,7 @@ <varlistentry> <term>-Xlint</term> - <listitem><para>Same as -Xlint:warning + <listitem><para>Same as -Xlint:warning (enabled by default) </para></listitem> </varlistentry> @@ -244,6 +244,9 @@ <varlistentry> <term>-nowarn</term> <listitem><para>Emit no warnings (equivalent to '-warn:none') + This does not suppress messages + generated by <literal>declare warning</literal> or + <literal>Xlint</literal>. </para></listitem> </varlistentry> @@ -260,7 +263,11 @@ unusedLocals local variable never read unusedArguments method argument never read unusedImports import statement not used by code in file + none suppress all compiler warnings </programlisting> + <literal>-warn:none</literal> does not suppress messages + generated by <literal>declare warning</literal> or + <literal>Xlint</literal>. </para></listitem> </varlistentry> |