You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by ch...@apache.org on 2013/11/06 19:25:48 UTC

svn commit: r1539422 - /uima/sandbox/uima-ducc/trunk/uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/ServiceQueryReplyEvent.java

Author: challngr
Date: Wed Nov  6 18:25:48 2013
New Revision: 1539422

URL: http://svn.apache.org/r1539422
Log:
UIMA-3411 Fix service query api, misspelled getServiceDescriptions.

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/ServiceQueryReplyEvent.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/ServiceQueryReplyEvent.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/ServiceQueryReplyEvent.java?rev=1539422&r1=1539421&r2=1539422&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/ServiceQueryReplyEvent.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-transport/src/main/java/org/apache/uima/ducc/transport/event/ServiceQueryReplyEvent.java Wed Nov  6 18:25:48 2013
@@ -41,7 +41,7 @@ public class ServiceQueryReplyEvent 
         this.services.add(s);
     }
 
-    public List<IServiceDescription> getServices()
+    public List<IServiceDescription> getServiceDescriptions()
     {
         return services;
     }