You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2016/04/15 21:05:24 UTC

incubator-geode git commit: GEODE-336: Make Function extends Identifiable

Repository: incubator-geode
Updated Branches:
  refs/heads/develop f702bcfe5 -> 73c9825ff


GEODE-336: Make Function extends Identifiable<String>

Function was extending Identifiable without specifying the generic
type.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/73c9825f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/73c9825f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/73c9825f

Branch: refs/heads/develop
Commit: 73c9825ff0853684d2208a65d94a3689e7c7c02f
Parents: f702bcf
Author: Dan Smith <up...@apache.org>
Authored: Thu Apr 14 15:55:53 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Fri Apr 15 12:05:09 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/com/gemstone/gemfire/cache/execute/Function.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/73c9825f/geode-core/src/main/java/com/gemstone/gemfire/cache/execute/Function.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/execute/Function.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/execute/Function.java
index 2e4e066..553248e 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/execute/Function.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/execute/Function.java
@@ -35,7 +35,7 @@ import com.gemstone.gemfire.lang.Identifiable;
  *
  * @since 6.0
  */
-public interface Function extends Identifiable {
+public interface Function extends Identifiable<String> {
 
   /**
    * Specifies whether the function sends results while executing.