You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/09/15 20:41:01 UTC

svn commit: r815441 - in /commons/proper/collections/trunk/src/java/org/apache/commons/collections: BufferOverflowException.java BufferUnderflowException.java

Author: sebb
Date: Tue Sep 15 18:41:01 2009
New Revision: 815441

URL: http://svn.apache.org/viewvc?rev=815441&view=rev
Log:
Missing @Override

Modified:
    commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferOverflowException.java
    commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferUnderflowException.java

Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferOverflowException.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferOverflowException.java?rev=815441&r1=815440&r2=815441&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferOverflowException.java (original)
+++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferOverflowException.java Tue Sep 15 18:41:01 2009
@@ -70,6 +70,7 @@
      *
      * @return the root cause
      */
+    @Override
     public final Throwable getCause() {
         return throwable;
     }

Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferUnderflowException.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferUnderflowException.java?rev=815441&r1=815440&r2=815441&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferUnderflowException.java (original)
+++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/BufferUnderflowException.java Tue Sep 15 18:41:01 2009
@@ -73,6 +73,7 @@
      *
      * @return the root cause
      */
+    @Override
     public final Throwable getCause() {
         return throwable;
     }