Skip to content

Commit 1daa03c

Browse files
committed
Change the 'since' value to '1.3.0'
1 parent 17c162f commit 1daa03c

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

core/src/main/scala/org/apache/spark/SparkContext.scala

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1630,28 +1630,28 @@ object SparkContext extends Logging {
16301630
// following ones.
16311631

16321632
@deprecated("Replaced by implicit objects in AccumulatorParam. This is kept here only for " +
1633-
"backward compatibility.", "1.2.0")
1633+
"backward compatibility.", "1.3.0")
16341634
object DoubleAccumulatorParam extends AccumulatorParam[Double] {
16351635
def addInPlace(t1: Double, t2: Double): Double = t1 + t2
16361636
def zero(initialValue: Double) = 0.0
16371637
}
16381638

16391639
@deprecated("Replaced by implicit objects in AccumulatorParam. This is kept here only for " +
1640-
"backward compatibility.", "1.2.0")
1640+
"backward compatibility.", "1.3.0")
16411641
object IntAccumulatorParam extends AccumulatorParam[Int] {
16421642
def addInPlace(t1: Int, t2: Int): Int = t1 + t2
16431643
def zero(initialValue: Int) = 0
16441644
}
16451645

16461646
@deprecated("Replaced by implicit objects in AccumulatorParam. This is kept here only for " +
1647-
"backward compatibility.", "1.2.0")
1647+
"backward compatibility.", "1.3.0")
16481648
object LongAccumulatorParam extends AccumulatorParam[Long] {
16491649
def addInPlace(t1: Long, t2: Long) = t1 + t2
16501650
def zero(initialValue: Long) = 0L
16511651
}
16521652

16531653
@deprecated("Replaced by implicit objects in AccumulatorParam. This is kept here only for " +
1654-
"backward compatibility.", "1.2.0")
1654+
"backward compatibility.", "1.3.0")
16551655
object FloatAccumulatorParam extends AccumulatorParam[Float] {
16561656
def addInPlace(t1: Float, t2: Float) = t1 + t2
16571657
def zero(initialValue: Float) = 0f
@@ -1662,34 +1662,34 @@ object SparkContext extends Logging {
16621662
// and just call the corresponding functions in `object RDD`.
16631663

16641664
@deprecated("Replaced by implicit functions in the RDD companion object. This is " +
1665-
"kept here only for backward compatibility.", "1.2.0")
1665+
"kept here only for backward compatibility.", "1.3.0")
16661666
def rddToPairRDDFunctions[K, V](rdd: RDD[(K, V)])
16671667
(implicit kt: ClassTag[K], vt: ClassTag[V], ord: Ordering[K] = null) = {
16681668
RDD.rddToPairRDDFunctions(rdd)
16691669
}
16701670

16711671
@deprecated("Replaced by implicit functions in the RDD companion object. This is " +
1672-
"kept here only for backward compatibility.", "1.2.0")
1672+
"kept here only for backward compatibility.", "1.3.0")
16731673
def rddToAsyncRDDActions[T: ClassTag](rdd: RDD[T]) = RDD.rddToAsyncRDDActions(rdd)
16741674

16751675
@deprecated("Replaced by implicit functions in the RDD companion object. This is " +
1676-
"kept here only for backward compatibility.", "1.2.0")
1676+
"kept here only for backward compatibility.", "1.3.0")
16771677
def rddToSequenceFileRDDFunctions[K <% Writable: ClassTag, V <% Writable: ClassTag](
16781678
rdd: RDD[(K, V)]) =
16791679
RDD.rddToSequenceFileRDDFunctions(rdd)
16801680

16811681
@deprecated("Replaced by implicit functions in the RDD companion object. This is " +
1682-
"kept here only for backward compatibility.", "1.2.0")
1682+
"kept here only for backward compatibility.", "1.3.0")
16831683
def rddToOrderedRDDFunctions[K : Ordering : ClassTag, V: ClassTag](
16841684
rdd: RDD[(K, V)]) =
16851685
RDD.rddToOrderedRDDFunctions(rdd)
16861686

16871687
@deprecated("Replaced by implicit functions in the RDD companion object. This is " +
1688-
"kept here only for backward compatibility.", "1.2.0")
1688+
"kept here only for backward compatibility.", "1.3.0")
16891689
def doubleRDDToDoubleRDDFunctions(rdd: RDD[Double]) = RDD.doubleRDDToDoubleRDDFunctions(rdd)
16901690

16911691
@deprecated("Replaced by implicit functions in the RDD companion object. This is " +
1692-
"kept here only for backward compatibility.", "1.2.0")
1692+
"kept here only for backward compatibility.", "1.3.0")
16931693
def numericRDDToDoubleRDDFunctions[T](rdd: RDD[T])(implicit num: Numeric[T]) =
16941694
RDD.numericRDDToDoubleRDDFunctions(rdd)
16951695

@@ -1722,42 +1722,42 @@ object SparkContext extends Logging {
17221722
// and just call the corresponding functions in `object WritableConverter`.
17231723

17241724
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1725-
"backward compatibility.", "1.2.0")
1725+
"backward compatibility.", "1.3.0")
17261726
def intWritableConverter(): WritableConverter[Int] =
17271727
WritableConverter.intWritableConverter()
17281728

17291729
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1730-
"backward compatibility.", "1.2.0")
1730+
"backward compatibility.", "1.3.0")
17311731
def longWritableConverter(): WritableConverter[Long] =
17321732
WritableConverter.longWritableConverter()
17331733

17341734
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1735-
"backward compatibility.", "1.2.0")
1735+
"backward compatibility.", "1.3.0")
17361736
def doubleWritableConverter(): WritableConverter[Double] =
17371737
WritableConverter.doubleWritableConverter()
17381738

17391739
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1740-
"backward compatibility.", "1.2.0")
1740+
"backward compatibility.", "1.3.0")
17411741
def floatWritableConverter(): WritableConverter[Float] =
17421742
WritableConverter.floatWritableConverter()
17431743

17441744
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1745-
"backward compatibility.", "1.2.0")
1745+
"backward compatibility.", "1.3.0")
17461746
def booleanWritableConverter(): WritableConverter[Boolean] =
17471747
WritableConverter.booleanWritableConverter()
17481748

17491749
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1750-
"backward compatibility.", "1.2.0")
1750+
"backward compatibility.", "1.3.0")
17511751
def bytesWritableConverter(): WritableConverter[Array[Byte]] =
17521752
WritableConverter.bytesWritableConverter()
17531753

17541754
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1755-
"backward compatibility.", "1.2.0")
1755+
"backward compatibility.", "1.3.0")
17561756
def stringWritableConverter(): WritableConverter[String] =
17571757
WritableConverter.stringWritableConverter()
17581758

17591759
@deprecated("Replaced by implicit functions in WritableConverter. This is kept here only for " +
1760-
"backward compatibility.", "1.2.0")
1760+
"backward compatibility.", "1.3.0")
17611761
def writableWritableConverter[T <: Writable]() =
17621762
WritableConverter.writableWritableConverter()
17631763

0 commit comments

Comments
 (0)