NOJIRA removed o.a.m.Pair, cleaned up style, incorporated most of PR #74 but left Spark version at 1.1.1 due to bug in 1.2.1
Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/b0ee8e26 Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/b0ee8e26 Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/b0ee8e26 Branch: refs/heads/master Commit: b0ee8e2657a900315140d21205416338cc955864 Parents: 15ee195 Author: pferrel <[email protected]> Authored: Wed Mar 4 13:52:04 2015 -0800 Committer: pferrel <[email protected]> Committed: Wed Mar 4 13:52:04 2015 -0800 ---------------------------------------------------------------------- .../src/main/scala/org/apache/mahout/math/drm/RLikeDrmOps.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/b0ee8e26/math-scala/src/main/scala/org/apache/mahout/math/drm/RLikeDrmOps.scala ---------------------------------------------------------------------- diff --git a/math-scala/src/main/scala/org/apache/mahout/math/drm/RLikeDrmOps.scala b/math-scala/src/main/scala/org/apache/mahout/math/drm/RLikeDrmOps.scala index d8d04e2..380f4eb 100644 --- a/math-scala/src/main/scala/org/apache/mahout/math/drm/RLikeDrmOps.scala +++ b/math-scala/src/main/scala/org/apache/mahout/math/drm/RLikeDrmOps.scala @@ -134,7 +134,9 @@ object RLikeDrmOps { implicit def ops2Drm[K: ClassTag](ops: DrmLikeOps[K]): DrmLike[K] = ops.drm - implicit def cp2cpops[K: ClassTag](cp: CheckpointedDrm[K]): CheckpointedOps[K] = new CheckpointedOps(cp) + // Removed in move to 1.2.1 PR #74 https://github.com/apache/mahout/pull/74/files + // Not sure why. + // implicit def cp2cpops[K: ClassTag](cp: CheckpointedDrm[K]): CheckpointedOps[K] = new CheckpointedOps(cp) /** * This is probably dangerous since it triggers implicit checkpointing with default storage level
