You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2009/09/03 14:24:04 UTC

svn commit: r810912 - /incubator/pivot/trunk/web/test/org/apache/pivot/web/test/WebQueryTestClient.java

Author: smartini
Date: Thu Sep  3 12:24:04 2009
New Revision: 810912

URL: http://svn.apache.org/viewvc?rev=810912&view=rev
Log:
PIVOT-262 - added missing @Override, now also for Test sources

Modified:
    incubator/pivot/trunk/web/test/org/apache/pivot/web/test/WebQueryTestClient.java

Modified: incubator/pivot/trunk/web/test/org/apache/pivot/web/test/WebQueryTestClient.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/web/test/org/apache/pivot/web/test/WebQueryTestClient.java?rev=810912&r1=810911&r2=810912&view=diff
==============================================================================
--- incubator/pivot/trunk/web/test/org/apache/pivot/web/test/WebQueryTestClient.java (original)
+++ incubator/pivot/trunk/web/test/org/apache/pivot/web/test/WebQueryTestClient.java Thu Sep  3 12:24:04 2009
@@ -74,6 +74,7 @@
 
         queryGroup.execute(new TaskListener<Void>() {
             @SuppressWarnings("unchecked")
+            @Override
             public synchronized void taskExecuted(Task<Void> task) {
                 Dictionary<String, Object> result = (Dictionary<String, Object>)getQuery.getResult();
 
@@ -102,6 +103,7 @@
                 System.out.println("DELETE fault: " + deleteQuery.getFault());
             }
 
+            @Override
             public synchronized void executeFailed(Task<Void> task) {
                 // No-op; task groups don't fail
             }