mirror of https://github.com/sbt/sbt.git
Fix scaladoc (#8476)
This commit is contained in:
parent
072181499a
commit
2338d5f4ee
|
|
@ -217,7 +217,7 @@ end ParsedSbtFileExpressions
|
|||
* val settings = parser.settings
|
||||
* }}}
|
||||
*
|
||||
* @param file The file we're parsing (may be a dummy file)
|
||||
* @param path The path we're parsing (may be a dummy file)
|
||||
* @param lines The parsed "lines" of the file, where each string is a line.
|
||||
*/
|
||||
private[sbt] case class SbtParser(path: VirtualFileRef, lines: Seq[String])
|
||||
|
|
|
|||
|
|
@ -104,8 +104,6 @@ object ConcurrentRestrictions {
|
|||
|
||||
/**
|
||||
* Implements concurrency restrictions on tasks based on Tags.
|
||||
* @param get
|
||||
* extracts tags from a task
|
||||
* @param validF
|
||||
* defines whether a set of tasks are allowed to execute concurrently based on their merged tags
|
||||
*/
|
||||
|
|
@ -144,10 +142,6 @@ object ConcurrentRestrictions {
|
|||
* restrictions on concurrent task execution.
|
||||
* @return
|
||||
* a pair, with _1 being the CompletionService and _2 a function to shutdown the service.
|
||||
* @tparam A
|
||||
* the task type
|
||||
* @tparam R
|
||||
* the type of data that will be computed by the CompletionService.
|
||||
*/
|
||||
def completionService(
|
||||
tags: ConcurrentRestrictions,
|
||||
|
|
|
|||
|
|
@ -796,7 +796,7 @@ trait Init:
|
|||
/**
|
||||
* An `Initialize[T]` associated with a `ScopedKey[S]`.
|
||||
* @tparam S the type of the associated `ScopedKey`
|
||||
* @tparam T the type of the value this `Initialize` defines.
|
||||
* @tparam A1 the type of the value this `Initialize` defines.
|
||||
*/
|
||||
sealed trait Keyed[S, A1] extends Initialize[A1]:
|
||||
def scopedKey: ScopedKey[S]
|
||||
|
|
|
|||
Loading…
Reference in New Issue