diff options
author | liamfallon <liam.fallon@est.tech> | 2019-06-28 10:42:34 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-06-28 10:42:34 +0000 |
commit | 423e98641ca7fe79a1b1bb897aa8a4b17ba5ee4d (patch) | |
tree | 9d3fd39c5e3dde70afa55d7cc2d399c14be4baf8 /auth/cli-codegen/src/test | |
parent | d139a68e359bfaa0e1ea1038345dd28e1869aca9 (diff) |
Replace non-Javadoc comments with inheritDocs
Copyright headers not changed as this review only amends comments.
Issue-ID: POLICY-1791
Change-Id: Icbeb2c6e591b3b160ae102bb67aef2d407924a4d
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'auth/cli-codegen/src/test')
-rw-r--r-- | auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/DummyStErrorListener.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/DummyStErrorListener.java b/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/DummyStErrorListener.java index 33387accc..45d307b47 100644 --- a/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/DummyStErrorListener.java +++ b/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/DummyStErrorListener.java @@ -33,8 +33,8 @@ public class DummyStErrorListener implements STErrorListener { /** Counts errors of the listener. */ private int errorCount; - /* (non-Javadoc) - * @see org.stringtemplate.v4.STErrorListener#IOError(org.stringtemplate.v4.misc.STMessage) + /** + * {@inheritDoc}. */ @Override public void IOError(final STMessage msg) { @@ -44,8 +44,8 @@ public class DummyStErrorListener implements STErrorListener { } } - /* (non-Javadoc) - * @see org.stringtemplate.v4.STErrorListener#compileTimeError(org.stringtemplate.v4.misc.STMessage) + /** + * {@inheritDoc}. */ @Override public void compileTimeError(final STMessage msg) { @@ -55,8 +55,8 @@ public class DummyStErrorListener implements STErrorListener { } } - /* (non-Javadoc) - * @see org.stringtemplate.v4.STErrorListener#internalError(org.stringtemplate.v4.misc.STMessage) + /** + * {@inheritDoc}. */ @Override public void internalError(final STMessage msg) { @@ -66,8 +66,8 @@ public class DummyStErrorListener implements STErrorListener { } } - /* (non-Javadoc) - * @see org.stringtemplate.v4.STErrorListener#runTimeError(org.stringtemplate.v4.misc.STMessage) + /** + * {@inheritDoc}. */ @Override public void runTimeError(final STMessage msg) { |