You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2015/05/01 20:27:48 UTC

spark git commit: changing persistence engine trait to an abstract class

Repository: spark
Updated Branches:
  refs/heads/master c8c481da1 -> 27de6fef6


changing persistence engine trait to an abstract class

Author: niranda <ni...@gmail.com>

Closes #5832 from nirandaperera/PersistanceEngine_abstract_class and squashes the following commits:

67b9d5a [niranda] changing persistence engine trait to an abstract class


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/27de6fef
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/27de6fef
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/27de6fef

Branch: refs/heads/master
Commit: 27de6fef6a852c0801b5d55d0e69096878bd7909
Parents: c8c481d
Author: niranda <ni...@gmail.com>
Authored: Fri May 1 11:27:45 2015 -0700
Committer: Reynold Xin <rx...@databricks.com>
Committed: Fri May 1 11:27:45 2015 -0700

----------------------------------------------------------------------
 .../scala/org/apache/spark/deploy/master/PersistenceEngine.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/27de6fef/core/src/main/scala/org/apache/spark/deploy/master/PersistenceEngine.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/org/apache/spark/deploy/master/PersistenceEngine.scala b/core/src/main/scala/org/apache/spark/deploy/master/PersistenceEngine.scala
index da50607..a03d460 100644
--- a/core/src/main/scala/org/apache/spark/deploy/master/PersistenceEngine.scala
+++ b/core/src/main/scala/org/apache/spark/deploy/master/PersistenceEngine.scala
@@ -33,7 +33,7 @@ import scala.reflect.ClassTag
  * The implementation of this trait defines how name-object pairs are stored or retrieved.
  */
 @DeveloperApi
-trait PersistenceEngine {
+abstract class PersistenceEngine {
 
   /**
    * Defines how the object is serialized and persisted. Implementation will


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org