Update of /var/cvs/src/org/mmbase/bridge/implementation
In directory 
james.mmbase.org:/tmp/cvs-serv2657/src/org/mmbase/bridge/implementation

Modified Files:
        BasicCloud.java 
Log Message:
 mmbase unicast host configurable
 Added javadoc



See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/bridge/implementation


Index: BasicCloud.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/bridge/implementation/BasicCloud.java,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -b -r1.182 -r1.183
--- BasicCloud.java     12 Apr 2008 11:18:09 -0000      1.182
+++ BasicCloud.java     9 May 2008 11:33:54 -0000       1.183
@@ -30,7 +30,7 @@
  * @author Rob Vermeulen
  * @author Pierre van Rooden
  * @author Michiel Meeuwissen
- * @version $Id: BasicCloud.java,v 1.182 2008/04/12 11:18:09 michiel Exp $
+ * @version $Id: BasicCloud.java,v 1.183 2008/05/09 11:33:54 nklasens Exp $
  */
 public class BasicCloud implements Cloud, Cloneable, Comparable<Cloud>, 
SizeMeasurable, Serializable {
 
@@ -995,12 +995,12 @@
         return set.getFunctions();
     }
 
-    public Function getFunction(String setName, String functionName) {
+    public Function<?> getFunction(String setName, String functionName) {
         FunctionSet set = FunctionSets.getFunctionSet(setName);
         if (set == null) {
             throw new NotFoundException("Functionset with name '" + setName + 
"' does not exist.");
         }
-        Function fun = set.getFunction(functionName);
+        Function<?> fun = set.getFunction(functionName);
         if (fun == null) {
             throw new NotFoundException("Function with name '" + functionName 
+ "' does not exist in function set with name '"+ setName + "'.");
         }
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to