Skip to content

Commit 536fbb5

Browse files
committed
remove cruft from Scaladoc (@author, @SInCE)
as we already did in scala/scala
1 parent 6ebdf09 commit 536fbb5

39 files changed

+0
-91
lines changed

core/src/main/scala/scala/collection/Parallel.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,5 @@ package scala
1414
package collection
1515

1616
/** A marker trait for collections which have their operations parallelised.
17-
*
18-
* @since 2.9
19-
* @author Aleksandar Prokopec
2017
*/
2118
trait Parallel

core/src/main/scala/scala/collection/generic/CanCombineFrom.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import scala.collection.parallel._
2222
* builder to be created.
2323
* @tparam Elem the element type of the collection to be created.
2424
* @tparam To the type of the collection to be created.
25-
* @since 2.8
2625
*/
2726
trait CanCombineFrom[-From, -Elem, +To] extends Parallel {
2827
def apply(from: From): Combiner[Elem, To]

core/src/main/scala/scala/collection/generic/GenericParTemplate.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ import scala.annotation.unchecked.uncheckedVariance
2424
*
2525
* @tparam A the element type of the collection
2626
* @tparam CC the type constructor representing the collection class
27-
* @author Aleksandar Prokopec
28-
* @since 2.8
2927
*/
3028
trait GenericParTemplate[+A, +CC[X] <: ParIterable[X]]
3129
extends GenericTraversableTemplate[A, CC]

core/src/main/scala/scala/collection/generic/GenericTraversableTemplate.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ import scala.collection.parallel.ParIterable
2222
*
2323
* @tparam A The type of the collection elements.
2424
* @tparam CC The type constructor representing the collection class.
25-
* @author Martin Odersky
26-
* @since 2.8
2725
* @define coll collection
2826
*/
2927
// TODO inline in GenericParTemplate or ParIterable

core/src/main/scala/scala/collection/generic/HasNewCombiner.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ package generic
1616

1717
import scala.collection.parallel.Combiner
1818

19-
/**
20-
* @since 2.8
21-
*/
2219
trait HasNewCombiner[+T, +Repr] {
2320
protected[this] def newCombiner: Combiner[T, Repr]
2421
}

core/src/main/scala/scala/collection/generic/ParFactory.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import scala.collection.parallel.ParIterable
2424
* This object provides a set of operations needed to create `$Coll` values.
2525
* @define coll parallel collection
2626
* @define Coll `ParIterable`
27-
* @since 2.8
2827
*/
2928
abstract class ParFactory[CC[X] <: ParIterable[X] with GenericParTemplate[X, CC]]
3029
extends GenericParCompanion[CC] {

core/src/main/scala/scala/collection/generic/ParMapFactory.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ import scala.collection.parallel.Combiner
2626
* @define Coll `ParMap`
2727
* @define factoryInfo
2828
* This object provides a set of operations needed to create `$Coll` values.
29-
* @author Aleksandar Prokopec
30-
* @since 2.8
3129
*/
3230
abstract class ParMapFactory[CC[X, Y] <: ParMap[X, Y] with ParMapLike[X, Y, CC, CC[X, Y], _]]
3331
extends GenericParMapCompanion[CC] {

core/src/main/scala/scala/collection/generic/ParSetFactory.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ import scala.collection.parallel.ParSetLike
2121
/**
2222
* @define factoryInfo
2323
* This object provides a set of operations needed to create `$Coll` values.
24-
* @author Aleksandar Prokopec
25-
* @since 2.8
2624
*/
2725
abstract class ParSetFactory[CC[X] <: ParSet[X] with ParSetLike[X, CC, CC[X], _] with GenericParTemplate[X, CC]]
2826
extends GenericParCompanion[CC] {

core/src/main/scala/scala/collection/generic/Signalling.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ import java.util.concurrent.atomic.AtomicInteger
2525
* signalling interface to inform worker threads that an element has
2626
* been found and no further search is necessary.
2727
*
28-
* @author prokopec
29-
*
3028
* @define abortflag
3129
* Abort flag being true means that a worker can abort and produce whatever result,
3230
* since its result will not affect the final result of computation. An example

core/src/main/scala/scala/collection/immutable/OldHashMap.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ import scala.collection.mutable.{Builder, ImmutableBuilder}
2828
*
2929
* @tparam K the type of the keys contained in this hash map.
3030
* @tparam V the type of the values associated with the keys.
31-
* @author Martin Odersky
32-
* @author Tiark Rompf
33-
* @since 2.3
3431
* @see [[http://docs.scala-lang.org/overviews/collections/concrete-immutable-collection-classes.html#hash-tries "Scala's Collection Library overview"]]
3532
* section on `Hash Tries` for more information.
3633
* @define Coll `immutable.OldHashMap`

0 commit comments

Comments
 (0)