Andy LoPresto created NIFI-2698:
-----------------------------------
Summary: HiveWriter checkstyle violation in Javadoc
Key: NIFI-2698
URL: https://issues.apache.org/jira/browse/NIFI-2698
Project: Apache NiFi
Issue Type: Bug
Components: Documentation & Website
Affects Versions: 1.0.0
Reporter: Andy LoPresto
Priority: Trivial
There is a checkstyle violation in {{HiveWriter.java}} -- in the Javadoc, a
static inner class is referenced but the class information cannot be loaded.
{code}
[INFO] --- maven-checkstyle-plugin:2.15:check (default-cli) @
nifi-hive-processors ---
[WARNING] src/main/java/org/apache/nifi/util/hive/HiveWriter.java[102:20]
(javadoc) JavadocMethod: Unable to get class information for @throws tag
'WriteFailure'.
...
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-checkstyle-plugin:2.15:check (default-cli) on
project nifi-hive-processors: You have 1 Checkstyle violation. -> [Help 1]
{code}
There are instructions to suppress this error type by modifying
{{checkstyle.xml}} [1].
{code}
<module name="RedundantThrows">
<property name="suppressLoadErrors" value="true"/>
</module>
{code}
[1] http://stackoverflow.com/a/35733030/70465
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)