change Scaladoc style comment

This commit is contained in:
Eugene Yokota 2015-10-01 23:57:58 -04:00
parent 5af540628f
commit c97563a0c0
1 changed files with 5 additions and 5 deletions

View File

@ -13,15 +13,15 @@ import sbt.util.Logger
* See also UpdateConfiguration in IvyActions.scala.
*/
final class UpdateOptions private[sbt] (
/** If set to CircularDependencyLevel.Error, halt the dependency resolution. */
// If set to CircularDependencyLevel.Error, halt the dependency resolution.
val circularDependencyLevel: CircularDependencyLevel,
/** If set to true, check all resolvers for snapshots. */
// If set to true, check all resolvers for snapshots.
val latestSnapshots: Boolean,
/** If set to true, use consolidated resolution. */
// If set to true, use consolidated resolution.
val consolidatedResolution: Boolean,
/** If set to true, use cached resolution. */
// If set to true, use cached resolution.
val cachedResolution: Boolean,
/** Extention point for an alternative resolver converter. */
// Extention point for an alternative resolver converter.
val resolverConverter: UpdateOptions.ResolverConverter
) {
def withCircularDependencyLevel(circularDependencyLevel: CircularDependencyLevel): UpdateOptions =