Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17150#discussion_r104146216
  
    --- Diff: core/src/main/scala/org/apache/spark/SparkContext.scala ---
    @@ -1391,8 +1391,9 @@ class SparkContext(config: SparkConf) extends Logging 
{
        * standard mutable collections. So you can use this with mutable Map, 
Set, etc.
        */
       @deprecated("use AccumulatorV2", "2.0.0")
    -  def accumulableCollection[R <% Growable[T] with TraversableOnce[T] with 
Serializable: ClassTag, T]
    -      (initialValue: R): Accumulable[R, T] = {
    +  def accumulableCollection[R : ClassTag, T](initialValue: R)
    --- End diff --
    
    This and the `SequenceFileRDDFunctions` change are the only questionable 
ones. This should be the equivalent declaration that context bounds desugar 
into, but the question is whether this actually induces an obscure API change.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to