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/08/11 13:39:42 UTC

svn commit: r803066 - /commons/proper/jexl/branches/2.0/src/test/java/org/apache/commons/jexl/examples/Output.java

Author: sebb
Date: Tue Aug 11 11:39:42 2009
New Revision: 803066

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

Modified:
    commons/proper/jexl/branches/2.0/src/test/java/org/apache/commons/jexl/examples/Output.java

Modified: commons/proper/jexl/branches/2.0/src/test/java/org/apache/commons/jexl/examples/Output.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/test/java/org/apache/commons/jexl/examples/Output.java?rev=803066&r1=803065&r2=803066&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/test/java/org/apache/commons/jexl/examples/Output.java (original)
+++ commons/proper/jexl/branches/2.0/src/test/java/org/apache/commons/jexl/examples/Output.java Tue Aug 11 11:39:42 2009
@@ -52,6 +52,7 @@
      * The output instance for the general outputing to System.out.
      */
     public static final Output SYSTEM = new Output() {
+        @Override
         public void print(String expr, Object actual, Object expected) {
             System.out.print(expr);
             System.out.println(actual);