Lewis John McGibbney created GORA-412:
-----------------------------------------
Summary: Consider location of @SuppressWarnings("all") in compiled classes
Key: GORA-412
URL: https://issues.apache.org/jira/browse/GORA-412
Project: Apache Gora
Issue Type: Improvement
Components: gora-compiler
Affects Versions: 0.6
Reporter: Lewis John McGibbney
Fix For: 0.7
Right now we silence Javac to any potential warnings by adding the following to compiled classes
{code}
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package org.apache.gora....;
@SuppressWarnings("all")
...
{code}
This means that the Javadoc associated with the generated class is not interpreted correctly
by clients such as Eclipse.
I propose to either
* remove the SupressWarnings altogether, or
* have it generated underneath the Javadoc string.
Any thoughts folks?
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
|