Add missing annotations.
This commit is contained in:
parent
0697258b6a
commit
8e5b10a0b0
|
@ -714,6 +714,7 @@ public class ExceptionUtilsTest {
|
|||
public void testgetStackFramesHappyPath() {
|
||||
final String[] actual = ExceptionUtils.getStackFrames(new Throwable() {
|
||||
// provide static stack trace to make test stable
|
||||
@Override
|
||||
public void printStackTrace(final PrintWriter s) {
|
||||
s.write("org.apache.commons.lang3.exception.ExceptionUtilsTest$1\n" +
|
||||
"\tat org.apache.commons.lang3.exception.ExceptionUtilsTest.testgetStackFramesGappyPath(ExceptionUtilsTest.java:706)\n" +
|
||||
|
|
|
@ -29,6 +29,7 @@ public class StringParameterizedChild extends GenericParent<String> {
|
|||
public void parentProtectedAnnotatedMethod(final String t) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void parentNotAnnotatedMethod(final String t) {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue