Missing @Override

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@815441 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-09-15 18:41:01 +00:00
parent d0a75294b4
commit 6a2b7c9831
2 changed files with 2 additions and 0 deletions

View File

@ -70,6 +70,7 @@ public class BufferOverflowException extends RuntimeException {
* *
* @return the root cause * @return the root cause
*/ */
@Override
public final Throwable getCause() { public final Throwable getCause() {
return throwable; return throwable;
} }

View File

@ -73,6 +73,7 @@ public class BufferUnderflowException extends NoSuchElementException {
* *
* @return the root cause * @return the root cause
*/ */
@Override
public final Throwable getCause() { public final Throwable getCause() {
return throwable; return throwable;
} }