From c97563a0c0df4c0c35421ed33e78495ab6e50dc4 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Thu, 1 Oct 2015 23:57:58 -0400 Subject: [PATCH] change Scaladoc style comment --- .../scala/sbt/librarymanagement/UpdateOptions.scala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/librarymanagement/src/main/scala/sbt/librarymanagement/UpdateOptions.scala b/librarymanagement/src/main/scala/sbt/librarymanagement/UpdateOptions.scala index 47ab13507..be2ad412f 100644 --- a/librarymanagement/src/main/scala/sbt/librarymanagement/UpdateOptions.scala +++ b/librarymanagement/src/main/scala/sbt/librarymanagement/UpdateOptions.scala @@ -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 =